1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +02:00

*** empty log message ***

This commit is contained in:
Kevin Ryde 2005-04-23 00:17:33 +00:00
parent 15f7341ed4
commit c51682b416
3 changed files with 11 additions and 1 deletions

View file

@ -10,7 +10,8 @@
list is called using apply, under the debugging evaluator.
(scm_list): Remove.
* list.c (scm_make_list): New code, moving make-list from boot-9.scm.
* list.c, list.h (scm_make_list): New code, moving make-list from
boot-9.scm.
2005-04-14 Kevin Ryde <user42@zip.com.au>

View file

@ -1,3 +1,9 @@
2005-04-23 Kevin Ryde <user42@zip.com.au>
* srfi-1.c (scm_srfi1_count, scm_srfi1_filter_map): Don't modify the
rest argument, that belongs to the caller when reached from apply.
Use a temp vector like scm_srfi1_for_each.
2005-04-04 Kevin Ryde <user42@zip.com.au>
* srfi-1.c, srfi-1.h (scm_srfi1_concatenate, scm_srfi1_concatenate_x):

View file

@ -4,6 +4,9 @@
* tests/list.test (list, make-list, cons*): New tests.
* tests/srfi-1.test (concatenate, concatenate!, count, filter-map,
lset-adjoin): More tests.
2005-04-14 Kevin Ryde <user42@zip.com.au>
* tests/numbers.test (1+, 1-): New tests.