diff options
author | Marius Vollmer <mvo@zagadka.de> | 2004-08-19 17:20:44 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2004-08-19 17:20:44 +0000 |
commit | 1934b612112092d05ea0b3251001524d198958de (patch) | |
tree | 56f328345451c4ac49c0e74edb59d61e277a95cd /srfi/srfi-13.scm | |
parent | cc95e00ac63820cbc03ca858ff6b8e1015c9d168 (diff) | |
download | guile-1934b612112092d05ea0b3251001524d198958de.tar.gz |
(substring/shared): Export as replacement since we now have a version
in the core.
Diffstat (limited to 'srfi/srfi-13.scm')
-rw-r--r-- | srfi/srfi-13.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/srfi/srfi-13.scm b/srfi/srfi-13.scm index 00d5d937b..b9b8d03ca 100644 --- a/srfi/srfi-13.scm +++ b/srfi/srfi-13.scm @@ -1,6 +1,6 @@ ;;; srfi-13.scm --- String Library -;; Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc. +;; Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc. ;; ;; This library is free software; you can redistribute it and/or ;; modify it under the terms of the GNU Lesser General Public @@ -117,7 +117,7 @@ ) :replace (string->list string-copy string-fill! string-upcase! string-upcase string-downcase! string-downcase - string-index) + string-index substring/shared) ) (cond-expand-provide (current-module) '(srfi-13)) |