Skip to content
Snippets Groups Projects
Commit 8fd42275 authored by toy's avatar toy
Browse files

%ENUMERATE-FILES was not putting the version number on to pathname

correctly (forgot the ~s).  From Lynn Quam.
parent 0f242984
No related branches found
No related tags found
No related merge requests found
......@@ -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)))))))
......
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