From b68068e3fc0ff8ac99977f783b64fc87953c0bde Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Sun, 29 Dec 2013 21:21:24 +0000 Subject: [PATCH] zone.lisp: Mark an ignored function parameter. CLisp complains about this one, but SBCL doesn't mind. --- zone.lisp | 1 + 1 file changed, 1 insertion(+) diff --git a/zone.lisp b/zone.lisp index 38c79f0..8124b28 100644 --- a/zone.lisp +++ b/zone.lisp @@ -786,6 +786,7 @@ "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))) -- 2.11.0