summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2003-06-04 16:38:59 +0000
committerKevin Ryde <user42@zip.com.au>2003-06-04 16:38:59 +0000
commite418bd7c12d0e97b02c99dfb317b96a063327edb (patch)
tree3498e0a94e200750a7b32aa70403d420fc308d91
parentb7d22e033c91b223284a4c4c2b1807e88b86ffe4 (diff)
downloadguile-e418bd7c12d0e97b02c99dfb317b96a063327edb.tar.gz
*** empty log message ***
-rw-r--r--doc/ref/ChangeLog17
-rw-r--r--libguile/ChangeLog3
-rw-r--r--test-suite/ChangeLog7
3 files changed, 27 insertions, 0 deletions
diff --git a/doc/ref/ChangeLog b/doc/ref/ChangeLog
index 500c3b611..620365f06 100644
--- a/doc/ref/ChangeLog
+++ b/doc/ref/ChangeLog
@@ -1,3 +1,20 @@
+2003-06-05 Kevin Ryde <user42@zip.com.au>
+
+ * posix.texi (File System): stat:rdev and stat:blocks can return #f,
+ stat:blksize returns a sensible size if the field is not available.
+
+ * scheme-compound.texi (Array Mapping): Reword for clarity, and in
+ particular have the same parameter names in the text and prototypes.
+
+ * scheme-evaluation.texi (Delayed Evaluation): Add delay, reword
+ promise? and force a bit, describe recursive forcing of a promise by
+ its own code.
+
+ * scheme-scheduling.texi (Futures): New section.
+
+ * srfi-modules.texi (SRFI-13 Miscellaneous): In string-replace, note
+ that start1 and end1 optional is a Guile extension.
+
2003-05-30 Kevin Ryde <user42@zip.com.au>
* deprecated.texi: Add substring-move-left! and substring-move-right!.
diff --git a/libguile/ChangeLog b/libguile/ChangeLog
index 6fc98fb66..b6ae562f3 100644
--- a/libguile/ChangeLog
+++ b/libguile/ChangeLog
@@ -3,6 +3,9 @@
* numbers.c (scm_max, scm_min): For inum, bignum and real, if other
operand is NaN, then return NaN. Also avoid passing NaN to mpz_cmp_d.
+ * read.c (scm_input_error): Pass arg list parameter to scm_error_scm,
+ rather than SCM_EOL. Needed by "Unknown # object" case in scm_lreadr.
+
2003-06-04 Dirk Herrmann <D.Herrmann@tu-bs.de>
* __scm.h, gc-card.c (SCM_DEBUG_DEBUGGER_SUPPORT,
diff --git a/test-suite/ChangeLog b/test-suite/ChangeLog
index b21b5fef2..9a3dbf798 100644
--- a/test-suite/ChangeLog
+++ b/test-suite/ChangeLog
@@ -1,3 +1,10 @@
+2003-06-05 Kevin Ryde <user42@zip.com.au>
+
+ * tests/numbers.test (logcount): Add a few more tests, to exercise
+ recent scm_logcount change.
+
+ * tests/reader.test (reading): Test bad # error message is formattable.
+
2003-06-01 Dirk Herrmann <D.Herrmann@tu-bs.de>
* tests/pairs.test: Added.