summaryrefslogtreecommitdiff
path: root/libguile/debug.c
diff options
context:
space:
mode:
authorMikael Djurfeldt <djurfeldt@nada.kth.se>1996-10-20 03:31:08 +0000
committerMikael Djurfeldt <djurfeldt@nada.kth.se>1996-10-20 03:31:08 +0000
commita6c64c3c6df9ae2b8baa0f166887c12270b5d646 (patch)
treef48da551e0239c5357c72fa026d636922b7d5042 /libguile/debug.c
parenta23afe534a0de89f47f67d2a0cc9ecae449915f3 (diff)
downloadguile-a6c64c3c6df9ae2b8baa0f166887c12270b5d646.tar.gz
* alist.c, arbiters.c, continuations.c, debug.c, debug.h, eval.c,
eval.h, feature.c, filesys.c, fports.c, gc.c, gsubr.c, init.c, ioext.c, kw.c, list.c, load.c, mallocs.c, numbers.c, numbers.h, pairs.c, pairs.h, ports.c, ports.h, posix.c, procprop.c, procs.c, procs.h, ramap.c, read.c, root.c, srcprop.c, srcprop.h, strports.c, symbols.c, tags.h, throw.c, unif.c, variable.c, vports.c: Cleaned up use of pairs: Don't make any special assumptions about the internal structure of selectors and mutators: SCM_CXR (<e1>) = <e2> --> SCM_SETCXR (<e1>, <e2>), SCM_CXR (<e1>) &= <e2> --> SCM_SETAND_CXR (<e1>, <e2>) etc. (Among other things, this change makes it easier to build Guile with certain compilers which have problems with casted lvalues.)
Diffstat (limited to 'libguile/debug.c')
-rw-r--r--libguile/debug.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/libguile/debug.c b/libguile/debug.c
index dc54cb47c..b18c5165c 100644
--- a/libguile/debug.c
+++ b/libguile/debug.c
@@ -171,11 +171,11 @@ scm_make_memoized (exp, env)
register SCM z, ans;
SCM_DEFER_INTS;
SCM_NEWCELL (z);
- SCM_CAR (z) = exp;
- SCM_CDR (z) = env;
+ SCM_SETCAR (z, exp);
+ SCM_SETCDR (z, env);
SCM_NEWCELL (ans);
- SCM_CAR (ans) = scm_tc16_memoized;
- SCM_CDR (ans) = z;
+ SCM_SETCAR (ans, scm_tc16_memoized);
+ SCM_SETCDR (ans, z);
SCM_ALLOW_INTS;
return ans;
}
@@ -378,8 +378,8 @@ scm_make_debugobj (frame)
register SCM z;
SCM_DEFER_INTS;
SCM_NEWCELL (z);
- SCM_CAR (z) = scm_tc16_debugobj;
- SCM_DEBUGOBJ_FRAME (z) = (SCM) frame;
+ SCM_SETCAR (z, scm_tc16_debugobj);
+ SCM_SET_DEBUGOBJ_FRAME (z, (SCM) frame);
SCM_ALLOW_INTS;
return z;
}