summaryrefslogtreecommitdiff
path: root/libguile/print.c
diff options
context:
space:
mode:
authorDirk Herrmann <dirk@dirk-herrmanns-seiten.de>2000-05-23 22:23:56 +0000
committerDirk Herrmann <dirk@dirk-herrmanns-seiten.de>2000-05-23 22:23:56 +0000
commit206d3de31e939c895bdbd31ade1909e03b2e1293 (patch)
treeaddf62f83e2bff7eaaa279c1cc1ffe9a6bdae8ee /libguile/print.c
parent445f675cf4439468a1c4b2ea0a8a19a5a5bba402 (diff)
downloadguile-206d3de31e939c895bdbd31ade1909e03b2e1293.tar.gz
* Replace SCM_UNPACK_CAR appropriately.
Diffstat (limited to 'libguile/print.c')
-rw-r--r--libguile/print.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/print.c b/libguile/print.c
index a243b4ec0..aab922b2e 100644
--- a/libguile/print.c
+++ b/libguile/print.c
@@ -407,11 +407,11 @@ taloop:
env = SCM_ENV (SCM_CDR (exp));
scm_puts ("#<", port);
}
- if (SCM_UNPACK_CAR(exp) & (3L << 16))
+ if (SCM_CELL_WORD_0 (exp) & (3L << 16))
scm_puts ("macro", port);
else
scm_puts ("syntax", port);
- if (SCM_UNPACK_CAR (exp) & (2L << 16))
+ if (SCM_CELL_WORD_0 (exp) & (2L << 16))
scm_putc ('!', port);
}
else