1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-11 22:31:12 +02:00

*** empty log message ***

This commit is contained in:
Kevin Ryde 2006-02-04 00:56:35 +00:00
parent 2d6e3bd4c0
commit f36978c9ce
3 changed files with 11 additions and 0 deletions

View file

@ -5,6 +5,8 @@
* intro.texi (Writing Guile Extensions), libguile-extensions.texi (A
Sample Guile Extension): pxref libtool manual.
* api-modules.texi (Compiled Code Installation): New section.
2006-01-29 Marius Vollmer <mvo@zagadka.de>
* api-scheduling.texi: Removed "Futures" node.

View file

@ -1,5 +1,10 @@
2006-02-04 Kevin Ryde <user42@zip.com.au>
* srfi-1.c (scm_srfi1_delete, scm_srfi1_delete_duplicates): Use a
count to protect against nasty code in the equality procedure changing
the lists we're working on. The results don't have to be sensible in
that case, just not hang or access non-cells.
* srfi-60.c (booleans->integer): Avoid newline in macro, it breaks the
snarfer.

View file

@ -3,6 +3,10 @@
* standalone/test-list.c: New file.
* standalone/Makefile.am: Add test-list.c
* tests/srfi-1.test: Use the equal proc argument, so we exercise the
srfi-1 version of the code. Without such an argument srfi-1.c passes
the job to the core scm_delete.
2006-01-29 Marius Vollmer <mvo@zagadka.de>
* tests/time.test: Replaced 'futures' with threads.