~ chicken-core (chicken-5) 04b7f4689a9b032b2e1d204d724d17c541662000
commit 04b7f4689a9b032b2e1d204d724d17c541662000
Author: Evan Hanson <evhan@foldling.org>
AuthorDate: Mon Aug 4 21:33:39 2014 +1200
Commit: Peter Bex <peter.bex@xs4all.nl>
CommitDate: Thu Aug 7 21:36:03 2014 +0200
Include reverse-list->string in srfi-13's import library
This procedure is provided by library.scm, but also needs to be exported
by the primitive srfi-13 library so that it's accessible when a module
imports "srfi-13" but not "chicken".
Fixes #1101.
Signed-off-by: Peter Bex <peter.bex@xs4all.nl>
diff --git a/srfi-13.import.scm b/srfi-13.import.scm
index c14bf0eb..1dde4489 100644
--- a/srfi-13.import.scm
+++ b/srfi-13.import.scm
@@ -29,6 +29,7 @@
'(check-substring-spec
kmp-step
make-kmp-restart-vector
+ reverse-list->string
string->list
string-any
string-append/shared
Trap