From 5eaefe4165aa6e866cd75fc397f5ea6862fed2b5 Mon Sep 17 00:00:00 2001 From: gerd <gerd> Date: Wed, 16 Apr 2003 19:41:05 +0000 Subject: [PATCH] Fix test cases CONTINUE.2, STORE-VALUE.2, USE-VALUE.2 from Paul Dietz' test suite. From SBCL. * src/code/error.lisp (define-nil-returning-restart): Invoke the restart returned from find-restart. --- code/error.lisp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/error.lisp b/code/error.lisp index a7cacdf3d..00b5a659a 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.68 2003/04/13 13:44:54 gerd Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/error.lisp,v 1.69 2003/04/16 19:41:05 gerd Exp $") ;;; ;;; ********************************************************************** ;;; @@ -1139,7 +1139,9 @@ (defmacro define-nil-returning-restart (name args doc) `(defun ,name (,@args &optional condition) ,doc - (if (find-restart ',name condition) (invoke-restart ',name ,@args)))) + (let ((restart (find-restart ',name condition))) + (when restart + (invoke-restart restart ,@args))))) (define-nil-returning-restart continue () "Transfer control to a restart named continue, returning nil if none exists.") -- GitLab