From 7b1574ed4fe3a2b2ffa0e13a82e8cdaf6f66ef6a Mon Sep 17 00:00:00 2001 From: Marius Vollmer Date: Wed, 27 Oct 2004 17:39:04 +0000 Subject: [PATCH] *** empty log message *** --- ChangeLog | 4 ++++ NEWS | 10 ++++++++-- doc/ref/ChangeLog | 6 ++++++ ice-9/ChangeLog | 5 +++++ 4 files changed, 23 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 2aa2ba7a6..11b7e9455 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-10-27 Marius Vollmer + + * libguile.h: Include "libguile/srfi-4.h". + 2004-10-25 Marius Vollmer * autogen.sh: Added explicit invocation of libtoolize before diff --git a/NEWS b/NEWS index f89df2cd8..7a32e451e 100644 --- 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. 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 + + * 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 * 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 + + * arrays.scm (uniform-vector?, uniform-vector-set!): Removed, now + provided by libguile. + 2004-10-26 Marius Vollmer * boot-9.scm: Added srfi-4 to cond-expand features.