From df25ed3ebc2ffaa15833600830b658bc5083b6ad Mon Sep 17 00:00:00 2001
From: pmai <pmai>
Date: Fri, 1 Feb 2002 12:54:53 +0000
Subject: [PATCH] Fixed a bug reported on comp.lang.lisp, where handler-case
 failed to handle free declarations in the body of handler-case clauses that
 don't bind a variable to the handled condition object.

---
 code/error.lisp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/code/error.lisp b/code/error.lisp
index 7123855bd..74365626e 100644
--- a/code/error.lisp
+++ b/code/error.lisp
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/error.lisp,v 1.60 2001/04/19 16:40:47 toy Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/error.lisp,v 1.61 2002/02/01 12:54:53 pmai Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -1084,7 +1084,7 @@
 					 ((not (cdr body))
 					  (car body))
 					 (t
-					  `(progn ,@body)))))))
+					  `(locally ,@body)))))))
 			   annotated-cases))))))))
 
 (defmacro ignore-errors (&rest forms)
-- 
GitLab