diff --git a/NEWS b/NEWS index a2e8a1e13..9383b9a0b 100644 --- a/NEWS +++ b/NEWS @@ -112,6 +112,10 @@ form around the code performing the heavy computations (typically a C code primitive), enabling the computations to run in parallel while the scripting code runs single-threadedly. +** New module (srfi srfi-26) + +This is an implementation of SRFI-26. + ** Guile now includes its own version of libltdl. We now use a modified version of libltdl that allows us to make diff --git a/THANKS b/THANKS index d4edecff6..26cf428ff 100644 --- a/THANKS +++ b/THANKS @@ -51,6 +51,8 @@ For fixes or providing information which led to a fix: Andreas Rottmann Kevin Ryde Bill Schottstaedt + Alex Shinn + Daniel Skarda Richard Todd Greg Troxel Momchil Velikov diff --git a/srfi/ChangeLog b/srfi/ChangeLog index 110d02933..3756e6989 100644 --- a/srfi/ChangeLog +++ b/srfi/ChangeLog @@ -1,3 +1,7 @@ +2004-01-21 Marius Vollmer + + * srfi-26.scm: New, from Daniel Skarda. Thanks! + 2003-12-03 Kevin Ryde * srfi-1.c, srfi-1.h, srfi-1.scm (count): Rewrite in C, avoiding diff --git a/test-suite/ChangeLog b/test-suite/ChangeLog index 2595e5760..c32c85091 100644 --- a/test-suite/ChangeLog +++ b/test-suite/ChangeLog @@ -1,3 +1,8 @@ +2004-01-21 Marius Vollmer + + * tests/srfi-26.test: New. + * Makefile.am (SCM_TESTS): Added it. + 2004-01-11 Marius Vollmer * tests/r5rs_pitfall.scm: New.