mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 20:00:19 +02:00
boot_closure_print cleanup
* libguile/eval.c (boot_closure_print): Get at the bits directly.
This commit is contained in:
parent
21041372ed
commit
fdecb44f32
1 changed files with 1 additions and 1 deletions
|
@ -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 ("_"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue