diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2001-11-02 13:55:38 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2001-11-02 13:55:38 +0000 |
commit | 7663c008a575968cf83b42a832d7038e7cc9938d (patch) | |
tree | bad8b0d0030fe969ab506da3bf44b62e7d3e2129 /libguile/print.c | |
parent | 08112c957b93167b622a5502fb95ac683246becf (diff) | |
download | guile-7663c008a575968cf83b42a832d7038e7cc9938d.tar.gz |
* print.c (scm_iprin1): Mark print state as revealed when
dispatching to generic write or display.
Diffstat (limited to 'libguile/print.c')
-rw-r--r-- | libguile/print.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libguile/print.c b/libguile/print.c index 31b12e5ce..369b112bb 100644 --- a/libguile/print.c +++ b/libguile/print.c @@ -462,6 +462,7 @@ scm_iprin1 (SCM exp, SCM port, scm_print_state *pstate) SCM_NEWSMOB (pwps, scm_tc16_port_with_ps, SCM_UNPACK (scm_cons (port, pstate->handle))); + pstate->revealed = 1; scm_call_generic_2 (print, exp, pwps); } else |