From 9b60e16f70d525b067b790077ecad35973a74eed Mon Sep 17 00:00:00 2001 From: Kevin Ryde Date: Fri, 1 Apr 2005 23:59:01 +0000 Subject: [PATCH] *** empty log message *** --- doc/ref/ChangeLog | 15 +++++++++++++++ srfi/ChangeLog | 12 ++++++++++++ test-suite/ChangeLog | 4 ++++ 3 files changed, 31 insertions(+) diff --git a/doc/ref/ChangeLog b/doc/ref/ChangeLog index 04410480c..eaede7a59 100644 --- a/doc/ref/ChangeLog +++ b/doc/ref/ChangeLog @@ -1,3 +1,18 @@ +2005-04-02 Kevin Ryde + + * repl-modules.texi (Readline Support): Cross ref readline manual. + (Loading Readline Support): Add GUILE_HISTORY and .inputrc Guile + configurables. + + * srfi-modules.texi (SRFI-1 Association Lists): In alist-cons, clarify + a bit and cross reference core acons. + + * srfi-modules.texi (SRFI-1 Set Operations): Revise and expand. + (SRFI-1 Deleting): In delete, cross reference lset-difference. + + * srfi-modules.texi (SRFI-19): Note Gregorian leap year rules + incorrectly extended back prior to 1582. + 2005-03-29 Marius Vollmer * api-compound.texi: Fixed some typos and added some docs. Talk diff --git a/srfi/ChangeLog b/srfi/ChangeLog index e76234133..a34dd3208 100644 --- a/srfi/ChangeLog +++ b/srfi/ChangeLog @@ -1,3 +1,15 @@ +2005-04-02 Kevin Ryde + + * srfi-1.c (scm_srfi1_count): Use scm_list_copy to make arg list, + instead of an inline loop. Share final list check between all cases + to save some code. + + * srfi-1.c (scm_srfi1_filter_map): Have 2-arg case share finalization + code of 1-arg case. + + * srfi-1.scm (lset-union): Rewrite to accumulate result by consing in + the order specified by the SRFI. + 2005-03-29 Marius Vollmer * srfi-60.c: Replaced SCM_INUMP with SCM_I_INUMP and SCM_INUM with diff --git a/test-suite/ChangeLog b/test-suite/ChangeLog index 1dfc25d1f..4aabb653a 100644 --- a/test-suite/ChangeLog +++ b/test-suite/ChangeLog @@ -1,3 +1,7 @@ +2005-04-02 Kevin Ryde + + * tests/srfi-1.test (lset-union): More tests. + 2005-03-26 Kevin Ryde * tests/srfi-13.test (string-index): Exercise 8-bit char in string.