From: Kevin M. Rosenberg Date: Thu, 11 Sep 2003 17:26:36 +0000 (+0000) Subject: r7825: ignore unused parameter X-Git-Tag: v1.96~122 X-Git-Url: http://git.kpe.io/?p=kmrcl.git;a=commitdiff_plain;h=b6ff0c171c1dfd968f6f3bad745a9be1308058e2 r7825: ignore unused parameter --- diff --git a/byte-stream.lisp b/byte-stream.lisp index fd7a56a..617cad5 100644 --- a/byte-stream.lisp +++ b/byte-stream.lisp @@ -220,6 +220,7 @@ Make-Byte-Array-Output-Stream since the last call to this function." (defmethod excl:device-extend ((stream extendable-buffer-output-stream) need action) + (declare (ignore action)) (let* ((len (file-position stream)) (new-len (max (+ len need) (* 2 len))) (old-buf (slot-value stream 'excl::buffer))