X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Ftarget-pathname.lisp;h=9f72ccd4df4f721a632c35286746c2a946e3e17b;hb=771b864c8f32af7734bc0550aeaf1539fc4df194;hp=86d1f21525f6c9faf92e53c807f60cee2fdacfd1;hpb=dfa8294a1580e8aa099a92baebba7d9caddb2fcb;p=sbcl.git diff --git a/src/code/target-pathname.lisp b/src/code/target-pathname.lisp index 86d1f21..9f72ccd 100644 --- a/src/code/target-pathname.lisp +++ b/src/code/target-pathname.lisp @@ -48,7 +48,7 @@ (print-unreadable-object (pathname stream :type t) (format stream "~@<(with no namestring) ~_:HOST ~S ~_:DEVICE ~S ~_:DIRECTORY ~S ~ - ~_:NAME ~S ~_:TYPE ~S ~_:VERSION ~S~:>" + ~_:NAME ~S ~_:TYPE ~S ~_:VERSION ~S~:>" (%pathname-host pathname) (%pathname-device pathname) (%pathname-directory pathname) @@ -692,7 +692,7 @@ a host-structure or string." :expected-type 'null :format-control "The host in the namestring, ~S,~@ - does not match the explicit HOST argument, ~S." + does not match the explicit HOST argument, ~S." :format-arguments (list new-host host))) (let ((pn-host (or new-host host (pathname-host defaults)))) (values (%make-maybe-logical-pathname @@ -816,7 +816,7 @@ a host-structure or string." (let ((host (%pathname-host pathname))) (unless host (error "can't determine the namestring for pathnames with no ~ - host:~% ~S" pathname)) + host:~% ~S" pathname)) (funcall (host-unparse host) pathname))))) (defun host-namestring (pathname) @@ -937,7 +937,7 @@ a host-structure or string." (setf in-wildcard t) (unless subs (error "not enough wildcards in FROM pattern to match ~ - TO pattern:~% ~S" + TO pattern:~% ~S" pattern)) (let ((sub (pop subs))) (typecase sub @@ -952,7 +952,7 @@ a host-structure or string." (push sub strings)) (t (error "can't substitute this into the middle of a word:~ - ~% ~S" + ~% ~S" sub))))))) (when strings @@ -969,7 +969,7 @@ a host-structure or string." ;;; Called when we can't see how source and from matched. (defun didnt-match-error (source from) (error "Pathname components from SOURCE and FROM args to TRANSLATE-PATHNAME~@ - did not match:~% ~S ~S" + did not match:~% ~S ~S" source from)) ;;; Do TRANSLATE-COMPONENT for all components except host, directory @@ -1082,14 +1082,14 @@ a host-structure or string." (let ((match (pop subs-left))) (when (listp match) (error ":WILD-INFERIORS is not paired in from and to ~ - patterns:~% ~S ~S" from to)) + patterns:~% ~S ~S" from to)) (res (maybe-diddle-case match diddle-case)))) ((member :wild-inferiors) (aver subs-left) (let ((match (pop subs-left))) (unless (listp match) (error ":WILD-INFERIORS not paired in from and to ~ - patterns:~% ~S ~S" from to)) + patterns:~% ~S ~S" from to)) (dolist (x match) (res (maybe-diddle-case x diddle-case))))) (pattern @@ -1160,7 +1160,7 @@ a host-structure or string." (unless (or (alpha-char-p ch) (digit-char-p ch) (char= ch #\-)) (error 'namestring-parse-error :complaint "logical namestring character which ~ - is not alphanumeric or hyphen:~% ~S" + is not alphanumeric or hyphen:~% ~S" :args (list ch) :namestring word :offset i)))) word)) @@ -1213,7 +1213,7 @@ a host-structure or string." (when (pattern) (error 'namestring-parse-error :complaint "double asterisk inside of logical ~ - word: ~S" + word: ~S" :args (list chunk) :namestring namestring :offset (+ (cdar chunks) pos))) @@ -1332,7 +1332,7 @@ a host-structure or string." (unless (and res (plusp res)) (error 'namestring-parse-error :complaint "expected a positive integer, ~ - got ~S" + got ~S" :args (list str) :namestring namestr :offset (+ pos (cdar chunks))))