1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-09 13:30:26 +02:00

*** empty log message ***

This commit is contained in:
Marius Vollmer 2004-10-27 17:39:04 +00:00
parent e6b226b9d1
commit 7b1574ed4f
4 changed files with 23 additions and 2 deletions

View file

@ -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

10
NEWS
View file

@ -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.

View 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

View 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.