~ chicken-core (chicken-5) 97387c4a9040985bb9c872d5612278656b3a673b
commit 97387c4a9040985bb9c872d5612278656b3a673b
Author: Peter Bex <peter@more-magic.net>
AuthorDate: Mon Nov 14 20:03:57 2016 +0100
Commit: Peter Bex <peter@more-magic.net>
CommitDate: Mon Nov 14 20:03:57 2016 +0100
Improve description of how to use release-number-vector
Before, it was implied that any vector made by a make-XXXvector
procedure could be deallocated with release-number-vector, which is of
course not true!
diff --git a/manual/Unit srfi-4 b/manual/Unit srfi-4
index 8043dd96..b0673405 100644
--- a/manual/Unit srfi-4
+++ b/manual/Unit srfi-4
@@ -343,10 +343,10 @@ with the datatype of VECTOR.
<procedure>(release-number-vector NVECTOR)</procedure>
Release the storage of a SRFI-4 vector that was allocated in
-non-garbage collected memory (using one of the {{make-XXXvector}}
-constructor procedures). The effect of calling this procedure with a
-number vector allocated in normal garbage collected memory is
-undefined.
+non-garbage collected memory (for example using the {{NONGC}} argument
+for one of the {{make-XXXvector}} constructor procedures). The effect
+of calling this procedure with a number vector allocated in normal
+garbage collected memory is undefined.
---
Trap