*** empty log message ***
authorKevin Ryde <user42@zip.com.au>
Fri, 1 Apr 2005 23:59:01 +0000 (23:59 +0000)
committerKevin Ryde <user42@zip.com.au>
Fri, 1 Apr 2005 23:59:01 +0000 (23:59 +0000)
doc/ref/ChangeLog
srfi/ChangeLog
test-suite/ChangeLog

index 0441048..eaede7a 100644 (file)
@@ -1,3 +1,18 @@
+2005-04-02  Kevin Ryde  <user42@zip.com.au>
+
+       * 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  <marius.vollmer@uni-dortmund.de>
 
        * api-compound.texi: Fixed some typos and added some docs.  Talk
index e762341..a34dd32 100644 (file)
@@ -1,3 +1,15 @@
+2005-04-02  Kevin Ryde  <user42@zip.com.au>
+
+       * 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  <marius.vollmer@uni-dortmund.de>
 
        * srfi-60.c: Replaced SCM_INUMP with SCM_I_INUMP and SCM_INUM with
index 1dfc25d..4aabb65 100644 (file)
@@ -1,3 +1,7 @@
+2005-04-02  Kevin Ryde  <user42@zip.com.au>
+
+       * tests/srfi-1.test (lset-union): More tests.
+
 2005-03-26  Kevin Ryde  <user42@zip.com.au>
 
        * tests/srfi-13.test (string-index): Exercise 8-bit char in string.