1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +02:00

Prevent `export' from re-exporting core bindings.

This commit is contained in:
Marius Vollmer 2001-06-14 18:23:28 +00:00
parent 45cf8cd6aa
commit 3d968b4e8b

View file

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