*** empty log message ***
authorMarius Vollmer <mvo@zagadka.de>
Wed, 27 Oct 2004 17:39:04 +0000 (17:39 +0000)
committerMarius Vollmer <mvo@zagadka.de>
Wed, 27 Oct 2004 17:39:04 +0000 (17:39 +0000)
ChangeLog
NEWS
doc/ref/ChangeLog
ice-9/ChangeLog

index 2aa2ba7..11b7e94 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2004-10-27  Marius Vollmer  <marius.vollmer@uni-dortmund.de>
+
+       * libguile.h: Include "libguile/srfi-4.h".
+
 2004-10-25  Marius Vollmer  <marius.vollmer@uni-dortmund.de>
 
        * autogen.sh: Added explicit invocation of libtoolize before
diff --git a/NEWS b/NEWS
index f89df2c..7a32e45 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -109,8 +109,9 @@ This is an implementation of SRFI-26.
 This is an implementation of SRFI-31 which provides a special form
 `rec' for recursive evaluation.
 
-** The modules (srfi srfi-13) and (srfi srfi-14) have been merged with
-   the core, making their functionality always available.
+** The modules (srfi srfi-13), (srfi srfi-14) and (srfi srfi-4) have
+   been merged with the core, making their functionality always
+   available.
 
 The modules are still available, tho, and you could use them together
 with a renaming import, for example.
@@ -158,6 +159,11 @@ be used with '-e'.  For example, you can now write a script like
 
 * Changes to Scheme functions and syntax
 
+** The uniform vector and array support has been overhauled.
+
+It now complies with SRFI-4 and the weird prototype based uniform
+array creation has been deprecated.  See the manual for more details.
+
 ** There is now support for copy-on-write substrings, mutation-sharing
    substrings and read-only strings.
 
index 5267363..91c4986 100644 (file)
@@ -1,3 +1,9 @@
+2004-10-27  Marius Vollmer  <marius.vollmer@uni-dortmund.de>
+
+       * srfi-modules.texi, api-compound.texi: Moved SRFI-4 docs into
+       main part.  Moved bit vectors out of array section to make them
+       more visible.
+
 2004-10-19  Marius Vollmer  <marius.vollmer@uni-dortmund.de>
 
        * api-smobs.texi (smob mark function): List admissible functions
index 93a98d9..b2e2160 100644 (file)
@@ -1,3 +1,8 @@
+2004-10-27  Marius Vollmer  <marius.vollmer@uni-dortmund.de>
+
+       * arrays.scm (uniform-vector?, uniform-vector-set!): Removed, now
+       provided by libguile.
+
 2004-10-26  Marius Vollmer  <marius.vollmer@uni-dortmund.de>
 
        * boot-9.scm: Added srfi-4 to cond-expand features.