0.6.10.5:
authorWilliam Harold Newman <william.newman@airmail.net>
Thu, 25 Jan 2001 03:08:56 +0000 (03:08 +0000)
committerWilliam Harold Newman <william.newman@airmail.net>
Thu, 25 Jan 2001 03:08:56 +0000 (03:08 +0000)
MNA patch: Empty namestrings are now "" instead of NIL.
(sbcl-devel 2001-01-24)

src/code/filesys.lisp
version.lisp-expr

index af41bd5..cf65e44 100644 (file)
           (pieces "/"))
          (t
           (error "invalid directory component: ~S" dir)))))
-    (unless (null (pieces))
-      (apply #'concatenate 'simple-string (pieces)))))
+    (apply #'concatenate 'simple-string (pieces))))
 
 (defun unparse-unix-directory (pathname)
   (declare (type pathname pathname))
        (strings (if (eq version :wild)
                     ".*"
                     (format nil ".~D" version)))))
-    (unless (null (strings))
-      (apply #'concatenate 'simple-string (strings)))))
+    (apply #'concatenate 'simple-string (strings))))
 
 (/show0 "filesys.lisp 406")
 
index e6a4671..e5b2320 100644 (file)
@@ -15,4 +15,4 @@
 ;;; versions, and a string like "0.6.5.12" is used for versions which
 ;;; aren't released but correspond only to CVS tags or snapshots.
 
-"0.6.10.4"
+"0.6.10.5"