0.9.16.23:
authorJuho Snellman <jsnell@iki.fi>
Sat, 9 Sep 2006 08:00:03 +0000 (08:00 +0000)
committerJuho Snellman <jsnell@iki.fi>
Sat, 9 Sep 2006 08:00:03 +0000 (08:00 +0000)
One more simple-base-string -> simple-string substitution in
        the pathname code (pointed out by Yaroslav Kavenchuk on
        sbcl-devel).

src/code/unix-pathname.lisp
src/code/win32-pathname.lisp
version.lisp-expr

index b376da8..99a4b35 100644 (file)
         (when name-needed
           (unless pathname-name (lose))
           (when (and (null pathname-type)
-                     (typep pathname-name 'simple-base-string)
+                     (typep pathname-name 'simple-string)
                      (position #\. pathname-name :start 1))
             (error "too many dots in the name: ~S" pathname))
           (strings (unparse-unix-piece pathname-name)))
index f39891a..08cad05 100644 (file)
         (when name-needed
           (unless pathname-name (lose))
           (when (and (null pathname-type)
-                     (typep pathname-name 'simple-base-string)
+                     (typep pathname-name 'simple-string)
                      (position #\. pathname-name :start 1))
             (error "too many dots in the name: ~S" pathname))
           (strings (unparse-unix-piece pathname-name)))
index 6c0ed3e..e84cd1c 100644 (file)
@@ -17,4 +17,4 @@
 ;;; checkins which aren't released. (And occasionally for internal
 ;;; versions, especially for internal versions off the main CVS
 ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"0.9.16.22"
+"0.9.16.23"