X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fpathname.lisp;h=efed3812c2116c024d3e764d3291b33e472e8701;hb=de0a47a2f2b165f34177669bd9499135847b4897;hp=542aa094c93018cfb734120b40c98f006f246ad5;hpb=fb8e5ded0b56f50de2024efbcc9ce68b401415f5;p=sbcl.git diff --git a/src/code/pathname.lisp b/src/code/pathname.lisp index 542aa09..efed381 100644 --- a/src/code/pathname.lisp +++ b/src/code/pathname.lisp @@ -26,7 +26,6 @@ (unparse-file (missing-arg) :type function) (unparse-enough (missing-arg) :type function) (unparse-directory-separator (missing-arg) :type simple-string) - (simplify-namestring (missing-arg) :type function) (customary-case (missing-arg) :type (member :upper :lower))) (def!method print-object ((host host) stream) @@ -37,14 +36,14 @@ (: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)))) @@ -52,7 +51,6 @@ (unparse-file #'unparse-logical-file) (unparse-enough #'unparse-enough-namestring) (unparse-directory-separator ";") - (simplify-namestring #'identity) (customary-case :upper))) (name "" :type simple-string) (translations nil :type list)