diff options
author | Marius Vollmer <mvo@zagadka.de> | 2004-10-27 17:39:04 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2004-10-27 17:39:04 +0000 |
commit | 7b1574ed4fe3a2b2ffa0e13a82e8cdaf6f66ef6a (patch) | |
tree | 3601d25ce3bc52fef012305c1937620f77032f6a | |
parent | e6b226b9d1bb2f0b48a740a04eab2d8fde56d15b (diff) | |
download | guile-7b1574ed4fe3a2b2ffa0e13a82e8cdaf6f66ef6a.tar.gz |
*** empty log message ***
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | NEWS | 10 | ||||
-rw-r--r-- | doc/ref/ChangeLog | 6 | ||||
-rw-r--r-- | ice-9/ChangeLog | 5 |
4 files changed, 23 insertions, 2 deletions
@@ -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 @@ -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. diff --git a/doc/ref/ChangeLog b/doc/ref/ChangeLog index 5267363f9..91c49864d 100644 --- a/doc/ref/ChangeLog +++ b/doc/ref/ChangeLog @@ -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 diff --git a/ice-9/ChangeLog b/ice-9/ChangeLog index 93a98d958..b2e21600f 100644 --- a/ice-9/ChangeLog +++ b/ice-9/ChangeLog @@ -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. |