Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
cmucl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Carl Shapiro
cmucl
Commits
2cd2370c
Commit
2cd2370c
authored
31 years ago
by
ram
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
code/filesys.lisp
+2
-5
2 additions, 5 deletions
code/filesys.lisp
with
2 additions
and
5 deletions
code/filesys.lisp
+
2
−
5
View file @
2cd2370c
...
@@ -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.3
4
1993/08/04
09:37:47
ram Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/filesys.lisp,v 1.3
5
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
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment