diff options
author | Marius Vollmer <mvo@zagadka.de> | 2001-06-14 18:23:28 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2001-06-14 18:23:28 +0000 |
commit | 3d968b4e8b82c4c080ff57689a3a4e9742583fcf (patch) | |
tree | d9cc95b85cf2721fa6592eb370b7f448546198ef | |
parent | 45cf8cd6aad1f45a7d025c04df90549869c83087 (diff) | |
download | guile-3d968b4e8b82c4c080ff57689a3a4e9742583fcf.tar.gz |
Prevent `export' from re-exporting core bindings.
-rw-r--r-- | srfi/srfi-13.scm | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/srfi/srfi-13.scm b/srfi/srfi-13.scm index dba10c525..8fe674f1e 100644 --- a/srfi/srfi-13.scm +++ b/srfi/srfi-13.scm @@ -43,6 +43,19 @@ (define-module (srfi srfi-13)) +(begin-deprecated + ;; Prevent `export' from re-exporting core bindings. This behaviour + ;; of `export' is deprecated and will disappear in one f the next + ;; releases. + (define string->list #f) + (define string-copy #f) + (define string-fill! #f) + (define string-index #f) + (define string-upcase #f) + (define string-upcase! #f) + (define string-downcase #f) + (define string-downcase! #f)) + (export ;;; Predicates ;; string? string-null? <= in the core |