diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/lispref/debugging.texi | 12 |
2 files changed, 9 insertions, 8 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 146ff8b454d..c5848ca8b2d 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-02-12 Chong Yidong <cyd@gnu.org> | ||
| 2 | |||
| 3 | * debugging.texi (Debugger Commands): Continuing is now allowed | ||
| 4 | for errors. | ||
| 5 | |||
| 1 | 2012-02-11 Chong Yidong <cyd@gnu.org> | 6 | 2012-02-11 Chong Yidong <cyd@gnu.org> |
| 2 | 7 | ||
| 3 | * display.texi (Fringe Indicators): Add xref to Fringe Bitmaps. | 8 | * display.texi (Fringe Indicators): Add xref to Fringe Bitmaps. |
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 |
| 373 | Exit the debugger and continue execution. When continuing is possible, | 373 | Exit the debugger and continue execution. This resumes execution of |
| 374 | it resumes execution of the program as if the debugger had never been | 374 | the program as if the debugger had never been entered (aside from any |
| 375 | entered (aside from any side-effects that you caused by changing | 375 | side-effects that you caused by changing variable values or data |
| 376 | variable values or data structures while inside the debugger). | 376 | structures while inside the debugger). |
| 377 | |||
| 378 | Continuing is possible after entry to the debugger due to function entry | ||
| 379 | or exit, explicit invocation, or quitting. You cannot continue if the | ||
| 380 | debugger was entered because of an error. | ||
| 381 | 377 | ||
| 382 | @item d | 378 | @item d |
| 383 | Continue execution, but enter the debugger the next time any Lisp | 379 | Continue execution, but enter the debugger the next time any Lisp |