1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-28 16:00:22 +02:00

*** empty log message ***

This commit is contained in:
Kevin Ryde 2004-12-13 23:40:37 +00:00
parent b666fb5d31
commit eda8ed2152
2 changed files with 12 additions and 0 deletions

6
NEWS
View file

@ -31,6 +31,12 @@ including octal literal constants in code or the reader.
In the srfi-1 module alist-delete and alist-delete!, the order of the
arguments to the "=" procedure now matches the SRFI-1 specification.
** SRFI-13 string-any and string-every tail calls
string-any and string-every now make a tail call to their predicate
function on reaching the last character in the string, per the SRFI-13
specification.
* Changes to the C interface

View file

@ -1,3 +1,9 @@
2004-12-14 Kevin Ryde <user42@zip.com.au>
* srfi-13.scm, srfi-13.c (string-any, string-every): Use a scheme
wrapper around the C code so for the final call to the predicate
procedure is a tail call, per SRFI-13 spec.
2004-12-06 Kevin Ryde <user42@zip.com.au>
* srfi-1.scm (alist-copy, alist-delete, break, delete,