1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 05:50:26 +02:00

*** empty log message ***

This commit is contained in:
Kevin Ryde 2005-04-01 23:59:01 +00:00
parent f01b08bf8a
commit 9b60e16f70
3 changed files with 31 additions and 0 deletions

View 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

View 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

View 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.