diff options
| author | Richard M. Stallman | 2001-10-19 23:37:53 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2001-10-19 23:37:53 +0000 |
| commit | 04b905441b5cc9c2043666d648f7797c81800dc0 (patch) | |
| tree | 362191ccf0008dbc19daec1d930583d98179d8cf /src | |
| parent | 875470a5664b17050bfa9d7c55b557f0c5a7f84e (diff) | |
| download | emacs-04b905441b5cc9c2043666d648f7797c81800dc0.tar.gz emacs-04b905441b5cc9c2043666d648f7797c81800dc0.zip | |
Clarify previous change.
Diffstat (limited to 'src')
| -rw-r--r-- | src/eval.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/eval.c b/src/eval.c index b96fb1788a4..5c54ae3961d 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -3309,7 +3309,7 @@ matched by `debug-ignored-errors'.\n\ | |||
| 3309 | If the value is a list, an error only means to enter the debugger\n\ | 3309 | If the value is a list, an error only means to enter the debugger\n\ |
| 3310 | if one of its condition symbols appears in the list.\n\ | 3310 | if one of its condition symbols appears in the list.\n\ |
| 3311 | When you evaluate an expression interactively, this variable\n\ | 3311 | When you evaluate an expression interactively, this variable\n\ |
| 3312 | is normally bound to the value of `eval-expression-debug-on-error'.\n\ | 3312 | is temporarily non-nil if `eval-expression-debug-on-error' is non-nil.\n\ |
| 3313 | See also variable `debug-on-quit'."); | 3313 | See also variable `debug-on-quit'."); |
| 3314 | Vdebug_on_error = Qnil; | 3314 | Vdebug_on_error = Qnil; |
| 3315 | 3315 | ||
| @@ -3326,7 +3326,7 @@ It does not apply to errors handled by `condition-case'."); | |||
| 3326 | "*Non-nil means enter debugger if quit is signaled (C-g, for example).\n\ | 3326 | "*Non-nil means enter debugger if quit is signaled (C-g, for example).\n\ |
| 3327 | Does not apply if quit is handled by a `condition-case'.\n\ | 3327 | Does not apply if quit is handled by a `condition-case'.\n\ |
| 3328 | When you evaluate an expression interactively, this variable\n\ | 3328 | When you evaluate an expression interactively, this variable\n\ |
| 3329 | is normally bound to the value of `eval-expression-debug-on-quit'."); | 3329 | is temporarily non-nil if `eval-expression-debug-on-quit' is non-nil."); |
| 3330 | debug_on_quit = 0; | 3330 | debug_on_quit = 0; |
| 3331 | 3331 | ||
| 3332 | DEFVAR_BOOL ("debug-on-next-call", &debug_on_next_call, | 3332 | DEFVAR_BOOL ("debug-on-next-call", &debug_on_next_call, |