From: Kevin Ryde Date: Mon, 28 Jul 2003 23:59:47 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: https://git.hcoop.net/bpt/guile.git/commitdiff_plain/8e5b4b9e34736010dbd74f02331735490f9d4661 *** empty log message *** --- diff --git a/doc/ref/ChangeLog b/doc/ref/ChangeLog index de8f5473f..df7b7afb5 100644 --- a/doc/ref/ChangeLog +++ b/doc/ref/ChangeLog @@ -1,3 +1,13 @@ +2003-07-29 Kevin Ryde + + * scheme-compound.texi (List Constructors): Remove scm_cons_star, + since it's not very helpful. + + * scheme-utility.texi (Property Primitives): In primitive-property-ref, + note parameters to not-found-proc, use hyphens rather than underscores + for that parameter name. + In primitive-property-set!, VAL is the value parameter not CODE. + 2003-07-24 Kevin Ryde * scheme-control.texi (Dynamic Wind): Untabify. diff --git a/libguile/ChangeLog b/libguile/ChangeLog index 3dbcbb679..e6d9e0227 100644 --- a/libguile/ChangeLog +++ b/libguile/ChangeLog @@ -1,3 +1,11 @@ +2003-07-29 Kevin Ryde + + * properties.c (scm_primitive_property_ref): In docstring, note + parameters to not-found-proc, use hyphens rather than underscores for + that parameter name. + (scm_primitive_property_set_x): In docstring, VAL is the value + parameter not CODE. + 2003-07-27 Marius Vollmer * print.c (scm_print_symbol_name): handle more weird characters by diff --git a/srfi/ChangeLog b/srfi/ChangeLog index e802e052b..aadf8041b 100644 --- a/srfi/ChangeLog +++ b/srfi/ChangeLog @@ -1,3 +1,12 @@ +2003-07-29 Kevin Ryde + + * srfi-1.c, srfi-1.scm (concatenate, concatenate!): Use scm_append and + scm_append_x. + + * srfi-1.c, srfi-1.h, srfi-1.scm (length+): Rewrite using scm_ilength. + + * srfi-34.scm: Add cond-expand-provide srfi-34. + 2003-07-14 Matthias Koeppe * srfi-1.c, srfi-1.h (scm_srfi1_partition), srfi-1.scm (partition): diff --git a/test-suite/ChangeLog b/test-suite/ChangeLog index 4a8f59dbd..5f2f6d070 100644 --- a/test-suite/ChangeLog +++ b/test-suite/ChangeLog @@ -1,3 +1,10 @@ +2003-07-29 Kevin Ryde + + * tests/srfi-1.test (concatenate, concatenate!): New tests. + (length+): New tests. + + * tests/srfi-34.test: Check cond-expand srfi-34. + 2003-07-24 Kevin Ryde * tests/numbers.test (angle): New tests.