From c3b4851f69eb67c843dd1fe89b4e24d6727c89c3 Mon Sep 17 00:00:00 2001
From: chiles <chiles>
Date: Thu, 9 May 1991 15:50:26 +0000
Subject: [PATCH] Fixed an error in the report for for unhandled-conditions. 
 It was recursively trying to print the condition.

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

diff --git a/code/debug-int.lisp b/code/debug-int.lisp
index bbfe70fff..e07253cc4 100644
--- a/code/debug-int.lisp
+++ b/code/debug-int.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/debug-int.lisp,v 1.24 1991/05/06 15:10:21 chiles Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/debug-int.lisp,v 1.25 1991/05/09 15:50:26 chiles Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -177,7 +177,7 @@
   ((condition))
   (:report (lambda (condition stream)
 	     (format stream "~&Unhandled debug-condition:~%~A"
-		     condition))))
+		     (unhandled-condition-condition condition)))))
 
 (define-condition invalid-control-stack-pointer (debug-error)
   ()
-- 
GitLab