diff options
| author | Dave Love | 2001-03-08 14:00:54 +0000 |
|---|---|---|
| committer | Dave Love | 2001-03-08 14:00:54 +0000 |
| commit | 80c8ab8c9b6428b52b014706d8901ee7602378a8 (patch) | |
| tree | b37508caa6559a56e7a76170dc6b33e6ca925a28 /src | |
| parent | 989521fdbc24a7ae6bea390060e0212229f0939b (diff) | |
| download | emacs-80c8ab8c9b6428b52b014706d8901ee7602378a8.tar.gz emacs-80c8ab8c9b6428b52b014706d8901ee7602378a8.zip | |
(syms_of_eval) <debug-on-error>: DOc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/eval.c | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 7e7a2691867..6eb06971f5d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2001-03-08 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | * eval.c (syms_of_eval) <debug-on-error>: DOc fix. | ||
| 4 | |||
| 1 | 2001-03-08 Gerd Moellmann <gerd@gnu.org> | 5 | 2001-03-08 Gerd Moellmann <gerd@gnu.org> |
| 2 | 6 | ||
| 3 | * process.c (Fset_process_window_size): Fix a typo. | 7 | * process.c (Fset_process_window_size): Fix a typo. |
diff --git a/src/eval.c b/src/eval.c index 7571f802c2e..7ba6c3cdcde 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -3255,7 +3255,8 @@ if one of its condition symbols appears in the list."); | |||
| 3255 | 3255 | ||
| 3256 | DEFVAR_LISP ("debug-on-error", &Vdebug_on_error, | 3256 | DEFVAR_LISP ("debug-on-error", &Vdebug_on_error, |
| 3257 | "*Non-nil means enter debugger if an error is signaled.\n\ | 3257 | "*Non-nil means enter debugger if an error is signaled.\n\ |
| 3258 | Does not apply to errors handled by `condition-case'.\n\ | 3258 | Does not apply to errors handled by `condition-case' or those\n\ |
| 3259 | matched by `debug-ignored-errors'.\n\ | ||
| 3259 | If the value is a list, an error only means to enter the debugger\n\ | 3260 | If the value is a list, an error only means to enter the debugger\n\ |
| 3260 | if one of its condition symbols appears in the list.\n\ | 3261 | if one of its condition symbols appears in the list.\n\ |
| 3261 | See also variable `debug-on-quit'."); | 3262 | See also variable `debug-on-quit'."); |