aboutsummaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
authorRichard M. Stallman2001-10-19 23:33:55 +0000
committerRichard M. Stallman2001-10-19 23:33:55 +0000
commit875470a5664b17050bfa9d7c55b557f0c5a7f84e (patch)
tree6cc9917bc38510198efcfdd32bf78dbea1ddbf8d /src/eval.c
parent0b5f679f6d2e0c54804eb9ef612bd11a1feec416 (diff)
downloademacs-875470a5664b17050bfa9d7c55b557f0c5a7f84e.tar.gz
emacs-875470a5664b17050bfa9d7c55b557f0c5a7f84e.zip
(syms_of_eval): Doc fixes.
Diffstat (limited to 'src/eval.c')
-rw-r--r--src/eval.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c
index 10170548cf2..b96fb1788a4 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -3308,6 +3308,8 @@ Does not apply to errors handled by `condition-case' or those\n\
3308matched by `debug-ignored-errors'.\n\ 3308matched by `debug-ignored-errors'.\n\
3309If the value is a list, an error only means to enter the debugger\n\ 3309If the value is a list, an error only means to enter the debugger\n\
3310if one of its condition symbols appears in the list.\n\ 3310if one of its condition symbols appears in the list.\n\
3311When you evaluate an expression interactively, this variable\n\
3312is normally bound to the value of `eval-expression-debug-on-error'.\n\
3311See also variable `debug-on-quit'."); 3313See also variable `debug-on-quit'.");
3312 Vdebug_on_error = Qnil; 3314 Vdebug_on_error = Qnil;
3313 3315
@@ -3322,7 +3324,9 @@ It does not apply to errors handled by `condition-case'.");
3322 3324
3323 DEFVAR_BOOL ("debug-on-quit", &debug_on_quit, 3325 DEFVAR_BOOL ("debug-on-quit", &debug_on_quit,
3324 "*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\
3325Does not apply if quit is handled by a `condition-case'."); 3327Does not apply if quit is handled by a `condition-case'.\n\
3328When you evaluate an expression interactively, this variable\n\
3329is normally bound to the value of `eval-expression-debug-on-quit'.");
3326 debug_on_quit = 0; 3330 debug_on_quit = 0;
3327 3331
3328 DEFVAR_BOOL ("debug-on-next-call", &debug_on_next_call, 3332 DEFVAR_BOOL ("debug-on-next-call", &debug_on_next_call,