1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-29 22:40:34 +02:00

*** empty log message ***

This commit is contained in:
Kevin Ryde 2005-04-23 00:07:17 +00:00
parent 2ac6b60e86
commit 8cb2eff840
3 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2005-04-23 Kevin Ryde <user42@zip.com.au>
* boot-9.scm (make-list): Moved to C code in list.c
2005-04-14 Kevin Ryde <user42@zip.com.au>
* boot-9.scm (1+, 1-): Moved to numbers.c.

View file

@ -10,6 +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.
2005-04-14 Kevin Ryde <user42@zip.com.au>
* numbers.c, numbers.h (scm_oneplus, scm_oneminus): New functions,

View file

@ -2,7 +2,7 @@
* tests/hash.test (hashx-remove!): New tests.
* tests/list.test (list, cons*): New tests.
* tests/list.test (list, make-list, cons*): New tests.
2005-04-14 Kevin Ryde <user42@zip.com.au>