Added an ignorable dclaration to the expansion of HANDLER-CASE.

This commit is contained in:
Juan Jose Garcia Ripoll 2010-02-07 12:04:38 +01:00
parent 96c8e09112
commit 01cbe7568f

View file

@ -683,6 +683,7 @@ memory limits before executing the program again."))))
(handler-bind ,(mapcar #'(lambda (annotated-case)
(list (cadr annotated-case)
`#'(lambda (temp)
(declare (ignorable temp))
,@(if (caddr annotated-case)
`((setq ,var temp)))
(go ,(car annotated-case)))))