diff options
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 |