From 87afdeb6ed51b118b8a2f13fadb2f14fc5909fcf Mon Sep 17 00:00:00 2001 From: phg <phg> Date: Fri, 4 Sep 1992 15:22:16 +0000 Subject: [PATCH] Change to the function %enumerate-files to permit versions to match on :wild and :newest for UNIX filesystems (the only kind currently supported by CMUCL). --- code/filesys.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/filesys.lisp b/code/filesys.lisp index bfb40cdaf..8d2ce8524 100644 --- a/code/filesys.lisp +++ b/code/filesys.lisp @@ -6,7 +6,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/filesys.lisp,v 1.28 1992/08/19 18:45:34 phg Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/filesys.lisp,v 1.29 1992/09/04 15:22:16 phg Exp $") ;;; ;;; ********************************************************************** ;;; @@ -589,7 +589,7 @@ (let ((file (concatenate 'string directory name))) (unless (or (null type) (eq type :unspecific)) (setf file (concatenate 'string file "." type))) - (unless (or (null version) (eq version :newest)) + (unless (member version '(nil :newest :wild)) (setf file (concatenate 'string file "." (quick-integer-to-string version)))) (when (or (not verify-existance) -- GitLab