Skip to content
Snippets Groups Projects
Commit 7361c488 authored by toy's avatar toy
Browse files

UNPARSE-UNIX-ENOUGH: If the PATHNAME has no directory component or

has a relative directory component, it is taken as relative to
DEFAULTS instead of signaling an error that it can't be represented
relative to DEFAULTS.
parent 659663df
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/filesys.lisp,v 1.71 2002/11/15 15:08:11 toy Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/filesys.lisp,v 1.72 2003/02/14 19:47:12 toy Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -456,11 +456,17 @@ ...@@ -456,11 +456,17 @@
(defaults-directory (%pathname-directory defaults)) (defaults-directory (%pathname-directory defaults))
(prefix-len (length defaults-directory)) (prefix-len (length defaults-directory))
(result-dir (result-dir
(cond ((and (> prefix-len 1) (cond ((null pathname-directory)
(>= (length pathname-directory) prefix-len) ;; No directory, so relative to default.
(compare-component (subseq pathname-directory (list :relative))
0 prefix-len) ((eq (first pathname-directory) :relative)
defaults-directory)) ;; Relative directory so relative to default.
pathname-directory)
((and (> prefix-len 1)
(>= (length pathname-directory) prefix-len)
(compare-component (subseq pathname-directory
0 prefix-len)
defaults-directory))
;; Pathname starts with a prefix of default. So just ;; Pathname starts with a prefix of default. So just
;; use a relative directory from then on out. ;; use a relative directory from then on out.
(cons :relative (nthcdr prefix-len pathname-directory))) (cons :relative (nthcdr prefix-len pathname-directory)))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment