diff --git a/code/filesys.lisp b/code/filesys.lisp index b96f2122d0aaa45b5772d0cff6b3ba786dcf5789..f5c35b0ede877bfde761db19dc17609a31337286 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.65 2001/12/13 13:45:08 pmai Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/filesys.lisp,v 1.66 2002/02/19 15:48:25 toy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -674,8 +674,9 @@ (unless (or (null type) (eq type :unspecific)) (setf file (concatenate 'string file "." type))) (unless (member version '(nil :newest :wild)) - (setf file (concatenate 'string file "." - (quick-integer-to-string version)))) + (setf file (concatenate 'string file ".~" + (quick-integer-to-string version) + "~"))) (when (or (not verify-existance) (unix:unix-file-kind file t)) (funcall function file)))))))