Skip to content
Snippets Groups Projects
Commit cf88c531 authored by wlott's avatar wlott
Browse files

When printing a frame, ignore errors that occur while looking for the

source.
parent fb0d5b6d
No related branches found
No related tags found
No related merge requests found
......@@ -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.32 1992/08/03 13:55:14 ram Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/debug.lisp,v 1.33 1992/09/05 19:42:52 wlott Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -610,7 +610,8 @@ See the CMU Common Lisp User's Manual for more information.
(di:code-location-debug-block loc)
(format t "~%Source: ")
(print-code-location-source-form loc 0))
(di:debug-condition (ignore) ignore)))))
(di:debug-condition (ignore) ignore)
(error (cond) (format t "Error finding source: ~A" cond))))))
;;;; Invoke-debugger.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment