Skip to content
Snippets Groups Projects
Commit 2cd2370c authored by ram's avatar ram
Browse files

Deleted vestigial documentation in rename-file about files that are open but

don't exist yet.
parent c8e9b27c
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.34 1993/08/04 09:37:47 ram Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/filesys.lisp,v 1.35 1993/08/04 10:54:53 ram Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -677,14 +677,11 @@ ...@@ -677,14 +677,11 @@
;;; ;;;
(defun rename-file (file new-name) (defun rename-file (file new-name)
"Rename File to have the specified New-Name. If file is a stream open to a "Rename File to have the specified New-Name. If file is a stream open to a
file, then the associated file is renamed. If the file does not yet exist file, then the associated file is renamed."
then the file is created with the New-Name when the stream is closed."
(let* ((original (truename file)) (let* ((original (truename file))
(original-namestring (unix-namestring original t)) (original-namestring (unix-namestring original t))
(new-name (merge-pathnames new-name original)) (new-name (merge-pathnames new-name original))
(new-namestring (unix-namestring new-name nil))) (new-namestring (unix-namestring new-name nil)))
(unless original-namestring
(error "~S doesn't exist." file))
(unless new-namestring (unless new-namestring
(error "~S can't be created." new-name)) (error "~S can't be created." new-name))
(multiple-value-bind (res error) (multiple-value-bind (res error)
......
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