diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2000-03-12 18:30:33 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2000-03-12 18:30:33 +0000 |
commit | f12677062e15015d7ef7d36fe3d103a77d1fefca (patch) | |
tree | e9ec3a99d2037b92f5c0c95e2a5b6e234b7ebb9d /libguile/print.c | |
parent | 67673f7594ecd4768b9e6db847949406a9e10091 (diff) | |
download | guile-f12677062e15015d7ef7d36fe3d103a77d1fefca.tar.gz |
*** empty log message ***
Diffstat (limited to 'libguile/print.c')
-rw-r--r-- | libguile/print.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libguile/print.c b/libguile/print.c index 746c0079c..ee2528471 100644 --- a/libguile/print.c +++ b/libguile/print.c @@ -123,7 +123,7 @@ char *scm_isymnames[] = }; scm_option scm_print_opts[] = { - { SCM_OPTION_SCM, "closure-hook", SCM_BITS(SCM_BOOL_F), + { SCM_OPTION_SCM, "closure-hook", SCM_UNPACK(SCM_BOOL_F), "Hook for printing closures." }, { SCM_OPTION_BOOLEAN, "source", 0, "Print closures with source." } @@ -404,11 +404,11 @@ taloop: env = SCM_ENV (SCM_CDR (exp)); scm_puts ("#<", port); } - if (SCM_CARBITS(exp) & (3L << 16)) + if (SCM_UNPACK_CAR(exp) & (3L << 16)) scm_puts ("macro", port); else scm_puts ("syntax", port); - if (SCM_CARBITS (exp) & (2L << 16)) + if (SCM_UNPACK_CAR (exp) & (2L << 16)) scm_putc ('!', port); } else |