From 2ff668b005fa599b6635f1e152ee45cf10562ea3 Mon Sep 17 00:00:00 2001 From: Marius Vollmer Date: Mon, 6 Jun 2005 19:55:08 +0000 Subject: [PATCH] *** empty log message *** --- libguile/ChangeLog | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libguile/ChangeLog b/libguile/ChangeLog index e16d71e29..83e63751c 100644 --- a/libguile/ChangeLog +++ b/libguile/ChangeLog @@ -1,5 +1,10 @@ 2005-06-06 Marius Vollmer + * 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.