diff --git a/NEWS b/NEWS index 2cc5103d3..56ecf5f16 100644 --- a/NEWS +++ b/NEWS @@ -18,6 +18,11 @@ Changes since Guile 1.6.4 (i.e. changes for 1.6.5): ** Bugs have been fixed that prevented the (re)generation of psyntax.pp. +** SRFI-31 has been added (special form `rec' for recursive evaluation) + +(use-modules (srfi srfi-31)) will now provide support for SRFI-31. +See the Guile info pages for more documentation. + * Changes to the stand-alone interpreter ** GC bug fixed. diff --git a/doc/ref/ChangeLog b/doc/ref/ChangeLog index f754b50cb..3b5db3dc1 100644 --- a/doc/ref/ChangeLog +++ b/doc/ref/ChangeLog @@ -1,3 +1,7 @@ +2004-02-01 Rob Browning + + * srfi-modules.texi (SRFI-31): document. + 2003-11-09 Kevin Ryde * scheme-data.texi (Random): In random, use @code for *random-state*. diff --git a/srfi/ChangeLog b/srfi/ChangeLog index 9f7c2a1a9..5fade6420 100644 --- a/srfi/ChangeLog +++ b/srfi/ChangeLog @@ -1,3 +1,9 @@ +2004-02-01 Rob Browning + + * srfi-31.scm: new file. + + * Makefile.am (srfi_DATA): add srfi-31.scm. + 2003-08-26 Kevin Ryde * srfi-19.scm (date-week-number): Correction, day of week starting diff --git a/srfi/srfi-19.scm b/srfi/srfi-19.scm index f25145a4a..6284db61b 100644 --- a/srfi/srfi-19.scm +++ b/srfi/srfi-19.scm @@ -41,7 +41,7 @@ ;; whether to permit this exception to apply to your modifications. ;; If you do not wish that, delete this exception notice. -;;; Author: Rob Browning +;;; Author: Rob Browning ;;; Originally from SRFI reference implementation by Will Fitzgerald. ;;; Commentary: diff --git a/test-suite/ChangeLog b/test-suite/ChangeLog index 60f93802c..e2a6a654b 100644 --- a/test-suite/ChangeLog +++ b/test-suite/ChangeLog @@ -1,3 +1,9 @@ +2004-02-01 Rob Browning + + * Makefile.am (SCM_TESTS): add srfi-31.scm. + + * tests/srfi-31.test: new file. + 2003-10-02 Kevin Ryde * tests/ports.test (call-with-output-string): Test proc closing port.