]> git.eshelyaron.com Git - emacs.git/commit
Move batch backtrace code to `top_level_2`
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 21 Dec 2023 04:31:39 +0000 (23:31 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 4 Jan 2024 21:35:53 +0000 (16:35 -0500)
commit604e34338f3b5a31439020c6704f9f9d07d17d69
tree6c174d866bb014b09705466158619d3e6654f236
parent80b081a0ac72a5a9e459af6c96f5b0226a79894f
Move batch backtrace code to `top_level_2`

Move ad-hoc code meant to ease debugging of bootstrap (and batch mode)
to `top_level_2` so it doesn't pollute `signal_or_quit`.

* src/lisp.h (pop_handler, push_handler_bind): Declare.
* src/keyboard.c (top_level_2): Setup an error handler to call
`debug-early` when noninteractive.
* src/eval.c (pop_handler): Not static any more.
(signal_or_quit): Remove special case for noninteractive use.
(push_handler_bind): New function, extracted from `Fhandler_bind_1`.
(Fhandler_bind_1): Use it.
(syms_of_eval): Declare `Qdebug_early__handler`.
* lisp/emacs-lisp/debug-early.el (debug-early-backtrace): Weed out
frames below `debug-early`.
(debug-early--handler): New function.
lisp/emacs-lisp/debug-early.el
src/eval.c
src/keyboard.c
src/lisp.h