summaryrefslogtreecommitdiff
path: root/module/rnrs/mutable-strings.scm
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2010-06-16 22:20:28 +0200
committerAndy Wingo <wingo@pobox.com>2010-06-16 22:20:28 +0200
commite44d2e4d9884c25b746b95690bcfb601547220fd (patch)
tree2186d57f0adeace6e54bb7c2d6842bb6f3c35488 /module/rnrs/mutable-strings.scm
parente5602ce73e1b440fe8c70c34d89fd6ff7f8e9d0a (diff)
downloadguile-e44d2e4d9884c25b746b95690bcfb601547220fd.tar.gz
remove encoding of versions into the file system (for now?)
* module/ice-9/boot-9.scm (find-versioned-module): Remove. Still had some bugs (e.g. for "." in the path and in finding compiled files), did too much computation and statting, and we don't really want to promote versioning. Nor do we want to hard-code a particular encoding of versions in the file-system. Perhaps the real way to do this is to be extensible somehow. (try-module-autoload): Just dispatch to primitive-load-path in all cases. * module/rnrs * module/rnrs.scm: * module/rnrs/arithmetic/bitwise.scm: * module/rnrs/arithmetic/fixnums.scm: * module/rnrs/arithmetic/flonums.scm: * module/rnrs/base.scm: * module/rnrs/conditions.scm: * module/rnrs/control.scm: * module/rnrs/enums.scm: * module/rnrs/eval.scm: * module/rnrs/exceptions.scm: * module/rnrs/files.scm: * module/rnrs/hashtables.scm: * module/rnrs/io/simple.scm: * module/rnrs/lists.scm: * module/rnrs/mutable-pairs.scm: * module/rnrs/mutable-strings.scm: * module/rnrs/programs.scm: * module/rnrs/r5rs.scm: * module/rnrs/records/inspection.scm: * module/rnrs/records/procedural.scm: * module/rnrs/records/syntactic.scm: * module/rnrs/sorting.scm: * module/rnrs/syntax-case.scm: * module/rnrs/unicode.scm: Move these files, eliding the "6/" infix, so that they are in the normal (unversioned) module path.
Diffstat (limited to 'module/rnrs/mutable-strings.scm')
-rw-r--r--module/rnrs/mutable-strings.scm22
1 files changed, 22 insertions, 0 deletions
diff --git a/module/rnrs/mutable-strings.scm b/module/rnrs/mutable-strings.scm
new file mode 100644
index 000000000..1eeb8f35c
--- /dev/null
+++ b/module/rnrs/mutable-strings.scm
@@ -0,0 +1,22 @@
+;;; mutable-strings.scm --- The R6RS mutable string library
+
+;; Copyright (C) 2010 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
+;; License as published by the Free Software Foundation; either
+;; version 3 of the License, or (at your option) any later version.
+;;
+;; This library is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+;; Lesser General Public License for more details.
+;;
+;; You should have received a copy of the GNU Lesser General Public
+;; License along with this library; if not, write to the Free Software
+;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+^L
+
+(library (rnrs mutable-strings (6))
+ (export string-set! string-fill!)
+ (import (only (guile) string-set! string-fill!)))