mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-20 11:40:18 +02:00
* print.c (scm_iprin1): Mark print state as revealed when
dispatching to generic write or display.
This commit is contained in:
parent
08112c957b
commit
7663c008a5
2 changed files with 4 additions and 0 deletions
|
@ -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>
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue