diff options
Diffstat (limited to 'libguile/print.c')
-rw-r--r-- | libguile/print.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/print.c b/libguile/print.c index b46296abb..4afd12c92 100644 --- a/libguile/print.c +++ b/libguile/print.c @@ -525,7 +525,7 @@ iprin1 (SCM exp, SCM port, scm_print_state *pstate) if (SCM_OBJ_CLASS_FLAGS (exp) & SCM_CLASSF_GOOPS) { SCM pwps, print = pstate->writingp ? g_write : g_display; - if (!print) + if (SCM_UNPACK (print) == 0) goto print_struct; pwps = scm_i_port_with_print_state (port, pstate->handle); pstate->revealed = 1; |