From a5e87ea6eec9ae7e5f95d8038b0a3605bab7079d Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Thu, 12 Dec 1991 13:49:19 +0000 Subject: [PATCH] Bind *current-level* to 0, *print-readably* to nil, and *read-eval* to T when entering the debugger to make sure things print as expected. --- code/debug.lisp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/code/debug.lisp b/code/debug.lisp index a07429de3..9e974bb98 100644 --- a/code/debug.lisp +++ b/code/debug.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.lisp,v 1.21 1991/10/16 11:39:26 chiles Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/debug.lisp,v 1.22 1991/12/12 13:49:19 wlott Exp $") ;;; ;;; ********************************************************************** ;;; @@ -264,7 +264,11 @@ (*debug-abort* (find-restart 'abort)) (handler-case (progn - (*error-output* *debug-io*)) + (di:code-location-debug-block loc) + (format t "~%Source: ") + (*current-level* 0) + (di:debug-condition (ignore) ignore)))))) + ;;;; Invoke-debugger. -- GitLab