summaryrefslogtreecommitdiff
path: root/libguile/gc.c
diff options
context:
space:
mode:
authorMikael Djurfeldt <djurfeldt@nada.kth.se>2000-03-12 17:00:58 +0000
committerMikael Djurfeldt <djurfeldt@nada.kth.se>2000-03-12 17:00:58 +0000
commit413cb56ff4080de5676a2756b670bcdd81af3334 (patch)
tree2c0bbcce260b66b0ed2f43a0c939d48c472ab33c /libguile/gc.c
parent244fdc2f4be27a42fa0a8ffb06a57b441ac9c690 (diff)
downloadguile-413cb56ff4080de5676a2756b670bcdd81af3334.tar.gz
* async.c, boolean.h, debug.c, dynl.c, dynwind.c, eval.c, eval.h,
feature.h, filesys.h, fluids.h, fports.c, fports.h, gc.c, gc.h, hash.c, keywords.h, macros.c, numbers.c, numbers.h, objects.c, objects.h, options.c, pairs.h, ports.c, ports.h, print.c, procs.h, ramap.c, read.c, smob.c, smob.h, srcprop.h, stacks.c, stacks.h, strports.c, struct.c, struct.h, tag.c, tags.h, throw.c, unif.c, unif.h, variable.h, vectors.h, weaks.c, weaks.h (SCM_SCM, SCM_BITS, SCM_CARBITS): Renamed from SCM_ASSCM, SCM_ASWORD, SCM_CARW).
Diffstat (limited to 'libguile/gc.c')
-rw-r--r--libguile/gc.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libguile/gc.c b/libguile/gc.c
index 38f8bc6d0..1a2ebd190 100644
--- a/libguile/gc.c
+++ b/libguile/gc.c
@@ -668,7 +668,7 @@ gc_mark_nimp:
{
SCM vcell;
vcell = SCM_CAR (ptr) - 1L;
- switch (SCM_ASWORD (SCM_CDR (vcell)))
+ switch (SCM_BITS (SCM_CDR (vcell)))
{
default:
scm_gc_mark (vcell);
@@ -692,7 +692,7 @@ gc_mark_nimp:
that it removes the mark */
mem = (SCM *)SCM_GCCDR (ptr);
- if (SCM_ASWORD (vtable_data[scm_struct_i_flags]) & SCM_STRUCTF_ENTITY)
+ if (SCM_BITS (vtable_data[scm_struct_i_flags]) & SCM_STRUCTF_ENTITY)
{
scm_gc_mark (mem[scm_struct_i_procedure]);
scm_gc_mark (mem[scm_struct_i_setter]);
@@ -1140,7 +1140,7 @@ scm_gc_sweep ()
SCM vcell;
vcell = SCM_CAR (scmptr) - 1L;
- if ((SCM_CDR (vcell) == 0) || (SCM_ASWORD (SCM_CDR (vcell)) == 1))
+ if ((SCM_CDR (vcell) == 0) || (SCM_BITS (SCM_CDR (vcell)) == 1))
{
scm_struct_free_t free
= (scm_struct_free_t) ((SCM*) vcell)[scm_struct_i_free];
@@ -1292,7 +1292,7 @@ scm_gc_sweep ()
case scm_tc16_flo:
if SCM_GC8MARKP (scmptr)
goto c8mrkcontinue;
- switch ((int) (SCM_CARW (scmptr) >> 16))
+ switch ((int) (SCM_CARBITS (scmptr) >> 16))
{
case (SCM_IMAG_PART | SCM_REAL_PART) >> 16:
m += sizeof (double);
@@ -1784,7 +1784,7 @@ SCM_DEFINE (scm_unhash_name, "unhash-name", 1, 0, 0,
--incar;
if ( ((name == SCM_BOOL_T) || (SCM_CAR (incar) == name))
&& (SCM_CDR (incar) != 0)
- && (SCM_ASWORD (SCM_CDR (incar)) != 1))
+ && (SCM_BITS (SCM_CDR (incar)) != 1))
{
p->car = name;
}