safely: Fix useless use of APPLY in SAFELY-WRITING.
authorMark Wooding <mdw@distorted.org.uk>
Tue, 28 Apr 2009 10:19:09 +0000 (11:19 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Thu, 15 Apr 2010 12:47:29 +0000 (13:47 +0100)
Not quite sure what I was thinking.

safely.lisp

index b5d7ff8..2477f9a 100644 (file)
    temporary file, and if BODY completes, it is renamed to FILE."
   (with-gensyms safe
     `(safely (,safe)
-       (let ((,stream (apply #'safely-open-output-stream
-                            ,safe ,file ,open-args)))
+       (let ((,stream (safely-open-output-stream ,safe ,file ,@open-args)))
         ,@body))))
 
 ;;;----- That's all, folks --------------------------------------------------