1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-01 20:30:28 +02:00

*** empty log message ***

This commit is contained in:
Marius Vollmer 2005-06-06 19:55:08 +00:00
parent 6d92f14f14
commit 2ff668b005

View file

@ -1,5 +1,10 @@
2005-06-06 Marius Vollmer <mvo@zagadka.de>
* print.c (iprin1): When writing a string, collect all characters
that can be printed directly into one call to scm_lfwrite.
Previously, every character was output with its own call to
write(2) on unbuffered ports.
* eval.c (scm_eval_options_interface): Use
scm_frame_critical_section instead of SCM_CRITICAL_SECTION_START
and SCM_CRITICAL_SECTION_END.