diff options
author | Andy Wingo <wingo@pobox.com> | 2011-10-24 17:59:23 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2011-10-24 18:55:35 +0200 |
commit | fdecb44f3252e47ee98d95f3fe473ff898ddf27e (patch) | |
tree | f4ccf92648768d2c6f86b37909311dd73f05f000 | |
parent | 21041372ed4a3c837f6d16149648508d49b4b2e2 (diff) | |
download | guile-fdecb44f3252e47ee98d95f3fe473ff898ddf27e.tar.gz |
boot_closure_print cleanup
* libguile/eval.c (boot_closure_print): Get at the bits directly.
-rw-r--r-- | libguile/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/eval.c b/libguile/eval.c index e1d03484d..f73710afc 100644 --- a/libguile/eval.c +++ b/libguile/eval.c @@ -914,7 +914,7 @@ boot_closure_print (SCM closure, SCM port, scm_print_state *pstate) { SCM args; scm_puts ("#<boot-closure ", port); - scm_uintprint ((scm_t_bits)SCM2PTR (closure), 16, port); + scm_uintprint (SCM_UNPACK (closure), 16, port); scm_putc (' ', port); args = scm_make_list (scm_from_int (BOOT_CLOSURE_NUM_REQUIRED_ARGS (closure)), scm_from_latin1_symbol ("_")); |