aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref/debugging.texi
diff options
context:
space:
mode:
authorChong Yidong2012-02-12 17:51:03 +0800
committerChong Yidong2012-02-12 17:51:03 +0800
commitfaccede13a670af32c47a7e1ab7635b6bf509474 (patch)
tree822310febf5daad66503a938773f2fcd7b862770 /doc/lispref/debugging.texi
parentafd83bd1529031d2883602908e9d58efef0c1fd0 (diff)
downloademacs-faccede13a670af32c47a7e1ab7635b6bf509474.tar.gz
emacs-faccede13a670af32c47a7e1ab7635b6bf509474.zip
* debugging.texi (Debugger Commands): Continuing is now allowed for errors.
Diffstat (limited to 'doc/lispref/debugging.texi')
-rw-r--r--doc/lispref/debugging.texi12
1 files changed, 4 insertions, 8 deletions
diff --git a/doc/lispref/debugging.texi b/doc/lispref/debugging.texi
index db5e4279dc7..6e7d0078e07 100644
--- a/doc/lispref/debugging.texi
+++ b/doc/lispref/debugging.texi
@@ -370,14 +370,10 @@ to step through a primitive function.
370 370
371@table @kbd 371@table @kbd
372@item c 372@item c
373Exit the debugger and continue execution. When continuing is possible, 373Exit the debugger and continue execution. This resumes execution of
374it resumes execution of the program as if the debugger had never been 374the program as if the debugger had never been entered (aside from any
375entered (aside from any side-effects that you caused by changing 375side-effects that you caused by changing variable values or data
376variable values or data structures while inside the debugger). 376structures while inside the debugger).
377
378Continuing is possible after entry to the debugger due to function entry
379or exit, explicit invocation, or quitting. You cannot continue if the
380debugger was entered because of an error.
381 377
382@item d 378@item d
383Continue execution, but enter the debugger the next time any Lisp 379Continue execution, but enter the debugger the next time any Lisp