diff options
| author | Paul Eggert | 2011-07-16 17:37:57 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-07-16 17:37:57 -0700 |
| commit | 4f8a4547454e24304b4182fbf4ae4b34a7bdc92b (patch) | |
| tree | d03d6d6cdd4b10a62633ed5f9da42d60dac016d0 /doc/lispref/debugging.texi | |
| parent | f0eb61e99dce9005dc94c909046f6130b3d4a97c (diff) | |
| parent | 64a465b2d97d00f27ed74513047ced07b798b9fd (diff) | |
| download | emacs-4f8a4547454e24304b4182fbf4ae4b34a7bdc92b.tar.gz emacs-4f8a4547454e24304b4182fbf4ae4b34a7bdc92b.zip | |
Merge from trunk.
Diffstat (limited to 'doc/lispref/debugging.texi')
| -rw-r--r-- | doc/lispref/debugging.texi | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/lispref/debugging.texi b/doc/lispref/debugging.texi index ed146453df7..d9e807afb88 100644 --- a/doc/lispref/debugging.texi +++ b/doc/lispref/debugging.texi | |||
| @@ -306,6 +306,16 @@ and it is wise to go back to the backtrace buffer and exit the debugger | |||
| 306 | the debugger gets out of the recursive edit and kills the backtrace | 306 | the debugger gets out of the recursive edit and kills the backtrace |
| 307 | buffer. | 307 | buffer. |
| 308 | 308 | ||
| 309 | When the debugger has been entered, the @code{debug-on-error} | ||
| 310 | variable is temporarily set according to | ||
| 311 | @code{eval-expression-debug-on-error}. If the latter variable is | ||
| 312 | non-@code{nil}, @code{debug-on-error} will temporarily be set to | ||
| 313 | @code{t}. This means that any further errors that occur while doing a | ||
| 314 | debugging session will (by default) trigger another backtrace. If | ||
| 315 | this is not want you want, you can either set | ||
| 316 | @code{eval-expression-debug-on-error} to @code{nil}, or set | ||
| 317 | @code{debug-on-error} to @code{nil} in @code{debugger-mode-hook}. | ||
| 318 | |||
| 309 | @cindex current stack frame | 319 | @cindex current stack frame |
| 310 | The backtrace buffer shows you the functions that are executing and | 320 | The backtrace buffer shows you the functions that are executing and |
| 311 | their argument values. It also allows you to specify a stack frame by | 321 | their argument values. It also allows you to specify a stack frame by |