Files
ports/lang/sbcl/files/ecl-nodebugger.lisp
2024-04-08 15:32:45 +00:00

7 lines
152 B
Common Lisp

;; define a debugger hook which exit early
(setf *debugger-hook*
(lambda (c fun)
(princ c)
(si::tpl-backtrace)
(quit 1)))