From a343458dbe0fa49fe2a03844b1b4c9fd3f11b681 Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Fri, 20 Aug 1999 02:46:04 +0000 Subject: [PATCH] *** empty log message *** --- guile-readline/ChangeLog | 4 ++++ libguile/ChangeLog | 16 ++++++++++++++++ 2 files changed, 20 insertions(+) diff --git a/guile-readline/ChangeLog b/guile-readline/ChangeLog index d1f1be679..e2a5a69ea 100644 --- a/guile-readline/ChangeLog +++ b/guile-readline/ChangeLog @@ -1,3 +1,7 @@ +1999-08-20 James Blandy + + * Makefile.in, aclocal.m4, configure: Regenerated. + 1999-08-17 Mikael Djurfeldt * configure.in (HAVE_RL_GETC_FUNCTION): Modified test to actually diff --git a/libguile/ChangeLog b/libguile/ChangeLog index f7d4fa345..030aae736 100644 --- a/libguile/ChangeLog +++ b/libguile/ChangeLog @@ -1,3 +1,19 @@ +1999-08-20 James Blandy + + * ports.h (enum scm_port_rw_active): New enum, containing + SCM_PORT_READ, SCM_PORT_WRITE, and SCM_PORT_NEITHER (instead of + zero). The debugger knows about enums, but doesn't know about + #defines. + (typedef scm_port): Declare rw_active member to be an enum + scm_port_rw_active. + * fports.c (fport_flush, fport_end_input): Use SCM_PORT_NEITHER + instead of zero. + * ports.c (scm_add_to_port_table): Same. + * strports.c (st_flush, st_end_input): Same. + + * ioext.c (scm_do_read_line, scm_read_line): Use scm_must_malloc, + scm_must_realloc, and scm_done_malloc as appropriate. + 1999-08-20 Mikael Djurfeldt * sort.c (quicksort): Added condition to protect the algorithm