diff options
author | Marius Vollmer <mvo@zagadka.de> | 2004-09-22 14:59:23 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2004-09-22 14:59:23 +0000 |
commit | ce7c0293cb4097d21026a024eb08aa4907cdb956 (patch) | |
tree | 7b5c8539e5db58966a7726e2611151861b2e88b9 | |
parent | 052567604f2b90eaaa93bafea4898d3af030551b (diff) | |
download | guile-ce7c0293cb4097d21026a024eb08aa4907cdb956.tar.gz |
*** empty log message ***
-rw-r--r-- | NEWS | 18 |
1 files changed, 12 insertions, 6 deletions
@@ -112,8 +112,8 @@ This is an implementation of SRFI-31 which provides a special form ** The modules (srfi srfi-13) and (srfi srfi-14) have been merged with the core, making their functionality always available. -The modules are still available, tho, and you use them together with a -renaming import, for example. +The modules are still available, tho, and you could use them together +with a renaming import, for example. ** Guile now includes its own version of libltdl. @@ -159,11 +159,17 @@ be used with '-e'. For example, you can now write a script like * Changes to Scheme functions and syntax -** There is now support for copy-on-write substrings and - mutation-sharing substrings. +** There is now support for copy-on-write substrings, mutation-sharing + substrings and read-only strings. -Two new procedures are related to this: substring/shared and -substring/copy. See the manual for more information. +Three new procedures are related to this: substring/shared, +substring/copy, and substring/read-only. See the manual for more +information. + +** String literals are now read-only. + +Use string-copy or similar to make a copy if you really want to modify +such a string. ** New syntax '@' and '@@': |