Skip to content
Snippets Groups Projects
Commit 63b672d4 authored by ram's avatar ram
Browse files

Changed ENUMERATE-MATCHES (hence all filesys code) to do

translate-logical-pathname on logical pathnames.
parent 53ce4ed5
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.31 1993/07/31 01:07:13 ram Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/filesys.lisp,v 1.32 1993/08/03 13:27:11 ram Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -504,22 +504,25 @@ ...@@ -504,22 +504,25 @@
,result)))) ,result))))
(defun %enumerate-matches (pathname verify-existance function) (defun %enumerate-matches (pathname verify-existance function)
(when (pathname-type pathname) (let ((pathname (if (typep pathname 'logical-pathname)
(unless (pathname-name pathname) (translate-logical-pathname pathname)
(error "Cannot supply a type without a name:~% ~S" pathname))) pathname)))
(when (and (integerp (pathname-version pathname)) (when (pathname-type pathname)
(member (pathname-type pathname) '(nil :unspecific))) (unless (pathname-name pathname)
(error "Cannot supply a version without a type:~% ~S" pathname)) (error "Cannot supply a type without a name:~% ~S" pathname)))
(let ((directory (pathname-directory pathname))) (when (and (integerp (pathname-version pathname))
(if directory (member (pathname-type pathname) '(nil :unspecific)))
(ecase (car directory) (error "Cannot supply a version without a type:~% ~S" pathname))
(:absolute (let ((directory (pathname-directory pathname)))
(%enumerate-directories "/" (cdr directory) pathname (if directory
verify-existance function)) (ecase (car directory)
(:relative (:absolute
(%enumerate-directories "" (cdr directory) pathname (%enumerate-directories "/" (cdr directory) pathname
verify-existance function))) verify-existance function))
(%enumerate-files "" pathname verify-existance function)))) (:relative
(%enumerate-directories "" (cdr directory) pathname
verify-existance function)))
(%enumerate-files "" pathname verify-existance function)))))
(defun %enumerate-directories (head tail pathname verify-existance function) (defun %enumerate-directories (head tail pathname verify-existance function)
(if tail (if tail
......
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