Skip to content
Snippets Groups Projects
Commit cc2636e4 authored by Francois-Rene Rideau's avatar Francois-Rene Rideau
Browse files

Fix rename-file-overwriting-target on ECL.

parent db3ce396
No related branches found
No related tags found
No related merge requests found
......@@ -571,7 +571,7 @@ in an atomic way if the implementation allows."
(symbol-call :posix :copy-file source target :method :rename))
#-clisp
(rename-file source target
#+clozure :if-exists #+clozure :rename-and-delete))
#+(or clozure ecl) :if-exists #+clozure :rename-and-delete #+ecl t))
(defun delete-file-if-exists (x)
"Delete a file X if it already exists"
......
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