1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-11 22:31:12 +02:00

*** empty log message ***

This commit is contained in:
Rob Browning 2004-02-01 21:42:30 +00:00
parent 447e692283
commit 1d69d405d5
5 changed files with 22 additions and 1 deletions

5
NEWS
View file

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

View file

@ -1,3 +1,7 @@
2004-02-01 Rob Browning <rlb@defaultvalue.org>
* srfi-modules.texi (SRFI-31): document.
2003-11-09 Kevin Ryde <user42@zip.com.au>
* scheme-data.texi (Random): In random, use @code for *random-state*.

View file

@ -1,3 +1,9 @@
2004-02-01 Rob Browning <rlb@defaultvalue.org>
* srfi-31.scm: new file.
* Makefile.am (srfi_DATA): add srfi-31.scm.
2003-08-26 Kevin Ryde <user42@zip.com.au>
* srfi-19.scm (date-week-number): Correction, day of week starting

View file

@ -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 <rlb@cs.utexas.edu>
;;; Author: Rob Browning <rlb@defaultvalue.org>
;;; Originally from SRFI reference implementation by Will Fitzgerald.
;;; Commentary:

View file

@ -1,3 +1,9 @@
2004-02-01 Rob Browning <rlb@defaultvalue.org>
* Makefile.am (SCM_TESTS): add srfi-31.scm.
* tests/srfi-31.test: new file.
2003-10-02 Kevin Ryde <user42@zip.com.au>
* tests/ports.test (call-with-output-string): Test proc closing port.