diff options
author | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2000-05-23 22:23:56 +0000 |
---|---|---|
committer | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2000-05-23 22:23:56 +0000 |
commit | 206d3de31e939c895bdbd31ade1909e03b2e1293 (patch) | |
tree | addf62f83e2bff7eaaa279c1cc1ffe9a6bdae8ee /libguile/print.c | |
parent | 445f675cf4439468a1c4b2ea0a8a19a5a5bba402 (diff) | |
download | guile-206d3de31e939c895bdbd31ade1909e03b2e1293.tar.gz |
* Replace SCM_UNPACK_CAR appropriately.
Diffstat (limited to 'libguile/print.c')
-rw-r--r-- | libguile/print.c | 4 |
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 |