From 1a50efd8a9e976bf16a29ce381ea38c6b9a39ea1 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Sun, 19 Jun 2011 19:23:57 +0100 Subject: [PATCH] safely.lisp: SAFE-COPY shouldn't make two copies under CLisp. The condition on the fallback portable code wasn't fixed to exclude CLisp when the POSIX:COPY-FILE change was made. The result is a steady buildup of MUMBLE-GORP-old.FOO files, which is no fun. --- safely.lisp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/safely.lisp b/safely.lisp index 9809f07..9b4ab45 100644 --- a/safely.lisp +++ b/safely.lisp @@ -181,9 +181,7 @@ :method :hardlink :if-exists nil))) - - - #-(or cmu sbcl) + #-(or cmu sbcl clisp) ;; Otherwise just copy the file contents and hope for the best. (with-open-file (input file :element-type :default) (multiple-value-bind -- 2.11.0