Skip to content
Snippets Groups Projects
Commit a64ae2c1 authored by ram's avatar ram
Browse files

Some extra protection against recursive invocation of the windowing debugger.

parent 90c0b480
No related branches found
No related tags found
No related merge requests found
......@@ -549,6 +549,10 @@
;;; Used to prevent recursive invocations of the windowing debugger.
;;;
(defvar *in-windowing-debugger* nil)
;;; INVOKE-DEBUGGER -- Public
;;;
;;; Invokes the Lisp debugger. It executes some common debugger setup code
......@@ -572,12 +576,13 @@
(*print-readably* nil)
(*read-eval* t))
(if (or (not (use-graphics-interface))
*in-windowing-debugger*
(typep condition 'xti:toolkit-error))
(progn
(format *error-output* "~2&~A~2&" *debug-condition*)
(unless (typep condition 'step-condition)
(show-restarts *debug-restarts* *error-output*))
(internal-debug))
(progn
(let ((*in-windowing-debugger* t))
(write-line "Invoking debugger...")
(invoke-motif-debugger condition)))))
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