Skip to content
Snippets Groups Projects
Commit 28bbc94e authored by wlott's avatar wlott
Browse files

Added (DECLARE (IGNORABLE STREAM)) to the guts of the defprinter expansion

to supress bound-but-not-used warnings.
parent 80e7ae6a
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/macros.lisp,v 1.29 1992/02/19 16:13:18 wlott Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/macros.lisp,v 1.30 1992/03/24 20:35:35 wlott Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -860,6 +860,7 @@
`(defun ,(symbolicate "%PRINT-" name) (structure stream depth)
(declare (ignore depth))
(flet ((do-prints (stream)
(declare (ignorable stream))
,@(prints)))
(cond (*print-pretty*
(pprint-logical-block (stream nil :prefix "#<" :suffix ">")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment