Added an ignorable dclaration to the expansion of HANDLER-CASE.
authorJuan Jose Garcia Ripoll <jjgarcia@jjgr-2.local>
Sun, 7 Feb 2010 11:04:38 +0000 (12:04 +0100)
committerJuan Jose Garcia Ripoll <jjgarcia@jjgr-2.local>
Sun, 7 Feb 2010 11:04:38 +0000 (12:04 +0100)
src/clos/conditions.lsp

index 9874ad0..8c4d337 100644 (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)))))