summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2001-10-19 23:32:02 +0000
committerRichard M. Stallman <rms@gnu.org>2001-10-19 23:32:02 +0000
commit7e0bd09174d037096dc5280cb6caa387d48e7dfd (patch)
tree4062d91cac1ec105bcf31d741ebd7d5c26bf9a67
parentcb3a218e011e4bac130889fd883b01f5f6090c6a (diff)
downloademacs-7e0bd09174d037096dc5280cb6caa387d48e7dfd.tar.gz
(syms_of_eval): Doc fixes.
-rw-r--r--src/eval.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c
index 7c423fe9675..73db8f71656 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -3284,6 +3284,8 @@ Does not apply to errors handled by `condition-case' or those\n\
matched by `debug-ignored-errors'.\n\
If the value is a list, an error only means to enter the debugger\n\
if one of its condition symbols appears in the list.\n\
+When you evaluate an expression interactively, this variable\n\
+is normally bound to the value of `eval-expression-debug-on-error'.\n\
See also variable `debug-on-quit'.");
Vdebug_on_error = Qnil;
@@ -3298,7 +3300,9 @@ It does not apply to errors handled by `condition-case'.");
DEFVAR_BOOL ("debug-on-quit", &debug_on_quit,
"*Non-nil means enter debugger if quit is signaled (C-g, for example).\n\
-Does not apply if quit is handled by a `condition-case'.");
+Does not apply if quit is handled by a `condition-case'.\n\
+When you evaluate an expression interactively, this variable\n\
+is normally bound to the value of `eval-expression-debug-on-quit'.");
debug_on_quit = 0;
DEFVAR_BOOL ("debug-on-next-call", &debug_on_next_call,