1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-29 19:48:19 +00:00

Correct Using Debugger lispref node

* doc/lispref/debugging.texi (Using Debugger): Make documentation
reflect reality (bug#36145).
This commit is contained in:
Lars Ingebrigtsen 2022-05-01 13:07:14 +02:00
parent 730ad4a373
commit 81ce4b0e4e

View File

@ -387,11 +387,9 @@ possibilities.)
variable is temporarily set according to variable is temporarily set according to
@code{eval-expression-debug-on-error}. If the latter variable is @code{eval-expression-debug-on-error}. If the latter variable is
non-@code{nil}, @code{debug-on-error} will temporarily be set to non-@code{nil}, @code{debug-on-error} will temporarily be set to
@code{t}. This means that any further errors that occur while doing a @code{t}. However, further errors that occur while debugging won't
debugging session will (by default) trigger another backtrace. If (by default) trigger another debugger, because @code{inhibit-debugger}
this is not what you want, you can either set will also be bound to non-@code{nil}.
@code{eval-expression-debug-on-error} to @code{nil}, or set
@code{debug-on-error} to @code{nil} in @code{debugger-mode-hook}.
The debugger itself must be run byte-compiled, since it makes The debugger itself must be run byte-compiled, since it makes
assumptions about the state of the Lisp interpreter. These assumptions about the state of the Lisp interpreter. These