aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love2001-03-08 14:00:54 +0000
committerDave Love2001-03-08 14:00:54 +0000
commit80c8ab8c9b6428b52b014706d8901ee7602378a8 (patch)
treeb37508caa6559a56e7a76170dc6b33e6ca925a28 /src
parent989521fdbc24a7ae6bea390060e0212229f0939b (diff)
downloademacs-80c8ab8c9b6428b52b014706d8901ee7602378a8.tar.gz
emacs-80c8ab8c9b6428b52b014706d8901ee7602378a8.zip
(syms_of_eval) <debug-on-error>: DOc fix.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/eval.c3
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 @@
12001-03-08 Dave Love <fx@gnu.org>
2
3 * eval.c (syms_of_eval) <debug-on-error>: DOc fix.
4
12001-03-08 Gerd Moellmann <gerd@gnu.org> 52001-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\
3258Does not apply to errors handled by `condition-case'.\n\ 3258Does not apply to errors handled by `condition-case' or those\n\
3259matched by `debug-ignored-errors'.\n\
3259If the value is a list, an error only means to enter the debugger\n\ 3260If the value is a list, an error only means to enter the debugger\n\
3260if one of its condition symbols appears in the list.\n\ 3261if one of its condition symbols appears in the list.\n\
3261See also variable `debug-on-quit'."); 3262See also variable `debug-on-quit'.");