diff options
-rw-r--r-- | libguile/ChangeLog | 3 | ||||
-rw-r--r-- | libguile/print.c | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/libguile/ChangeLog b/libguile/ChangeLog index 35da7eb44..a8d09e2ad 100644 --- a/libguile/ChangeLog +++ b/libguile/ChangeLog @@ -1,5 +1,8 @@ 2001-11-02 Mikael Djurfeldt <mdj@linnaeus> + * print.c (scm_iprin1): Mark print state as revealed when + dispatching to generic write or display. + * unif.c (scm_ra2contig): Fixed memory overwrite bug. 2001-11-02 Marius Vollmer <mvo@zagadka.ping.de> 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 |