X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fpathname.lisp;h=efed3812c2116c024d3e764d3291b33e472e8701;hb=65b5ab7e713d04e0d76bc0ee196374f6e57b922f;hp=18c14b9f37cd6ced1b3f7d1c163b56f12f508512;hpb=fec3614baf361523a4fb154ed80d9b73e1452b2d;p=sbcl.git diff --git a/src/code/pathname.lisp b/src/code/pathname.lisp index 18c14b9..efed381 100644 --- a/src/code/pathname.lisp +++ b/src/code/pathname.lisp @@ -25,6 +25,7 @@ (unparse-directory (missing-arg) :type function) (unparse-file (missing-arg) :type function) (unparse-enough (missing-arg) :type function) + (unparse-directory-separator (missing-arg) :type simple-string) (customary-case (missing-arg) :type (member :upper :lower))) (def!method print-object ((host host) stream) @@ -35,22 +36,23 @@ (:include host (parse #'parse-logical-namestring) (parse-native - (lambda (x) + (lambda (&rest x) (error "called PARSE-NATIVE-NAMESTRING using a ~ - logical host: ~S" x))) + logical host: ~S" (first x)))) (unparse #'unparse-logical-namestring) (unparse-native - (lambda (x) + (lambda (&rest x) (error "called NATIVE-NAMESTRING using a ~ - logical host: ~S" x))) + logical host: ~S" (first x)))) (unparse-host (lambda (x) (logical-host-name (%pathname-host x)))) (unparse-directory #'unparse-logical-directory) (unparse-file #'unparse-logical-file) (unparse-enough #'unparse-enough-namestring) + (unparse-directory-separator ";") (customary-case :upper))) - (name "" :type simple-base-string) + (name "" :type simple-string) (translations nil :type list) (canon-transls nil :type list))