zone.lisp: Mark an ignored function parameter.
authorMark Wooding <mdw@distorted.org.uk>
Sun, 29 Dec 2013 21:21:24 +0000 (21:21 +0000)
committerMark Wooding <mdw@distorted.org.uk>
Sun, 29 Dec 2013 21:22:43 +0000 (21:22 +0000)
CLisp complains about this one, but SBCL doesn't mind.

zone.lisp

index 38c79f0..8124b28 100644 (file)
--- a/zone.lisp
+++ b/zone.lisp
   "Stream to write zone data on.")
 
 (defmethod zone-write :around (format zone stream)
+  (declare (ignore format))
   (let ((*writing-zone* zone)
        (*zone-output-stream* stream))
     (call-next-method)))