From 0264d050817a007200ca1c4f723994b8a1538f59 Mon Sep 17 00:00:00 2001 From: pw <pw> Date: Wed, 25 Oct 2000 17:16:49 +0000 Subject: [PATCH] Put an explicit progn around forms in handler-bind. --- code/error.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/error.lisp b/code/error.lisp index 996291256..a49ebfa72 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.57 2000/08/08 13:41:18 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/error.lisp,v 1.58 2000/10/25 17:16:49 pw Exp $") ;;; ;;; ********************************************************************** ;;; @@ -813,7 +813,7 @@ bindings)) *handler-clusters*))) (multiple-value-prog1 - ,@forms + (progn ,@forms) ;; Wait for any float exceptions #+x86 (float-wait)))) -- GitLab