aboutsummaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
authorRichard M. Stallman2007-07-15 18:58:25 +0000
committerRichard M. Stallman2007-07-15 18:58:25 +0000
commitec07b64b8eef75156015cbea689919c005bfbc37 (patch)
tree994cff2304e1e27c30722fb9dc52e89c4965fe09 /src/eval.c
parent70e9f39931c1bc15846b9d0994ba4a69fc6f4a65 (diff)
downloademacs-ec07b64b8eef75156015cbea689919c005bfbc37.tar.gz
emacs-ec07b64b8eef75156015cbea689919c005bfbc37.zip
(Fsetq): Doc fix.
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 6707849a840..4ce5c6d05a9 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -97,6 +97,7 @@ Lisp_Object Qinhibit_quit, Vinhibit_quit, Vquit_flag;
97Lisp_Object Qand_rest, Qand_optional; 97Lisp_Object Qand_rest, Qand_optional;
98Lisp_Object Qdebug_on_error; 98Lisp_Object Qdebug_on_error;
99Lisp_Object Qdeclare; 99Lisp_Object Qdeclare;
100Lisp_Object Qdebug;
100 101
101/* This holds either the symbol `run-hooks' or nil. 102/* This holds either the symbol `run-hooks' or nil.
102 It is nil at an early stage of startup, and when Emacs 103 It is nil at an early stage of startup, and when Emacs
@@ -530,7 +531,7 @@ Thus, (setq x (1+ y)) sets `x' to the value of `(1+ y)'.
530The second VAL is not computed until after the first SYM is set, and so on; 531The second VAL is not computed until after the first SYM is set, and so on;
531each VAL can use the new value of variables set earlier in the `setq'. 532each VAL can use the new value of variables set earlier in the `setq'.
532The return value of the `setq' form is the value of the last VAL. 533The return value of the `setq' form is the value of the last VAL.
533usage: (setq SYM VAL SYM VAL ...) */) 534usage: (setq [SYM VAL]...) */)
534 (args) 535 (args)
535 Lisp_Object args; 536 Lisp_Object args;
536{ 537{
@@ -3600,6 +3601,9 @@ before making `inhibit-quit' nil. */);
3600 Qand_optional = intern ("&optional"); 3601 Qand_optional = intern ("&optional");
3601 staticpro (&Qand_optional); 3602 staticpro (&Qand_optional);
3602 3603
3604 Qdebug = intern ("debug");
3605 staticpro (&Qdebug);
3606
3603 DEFVAR_LISP ("stack-trace-on-error", &Vstack_trace_on_error, 3607 DEFVAR_LISP ("stack-trace-on-error", &Vstack_trace_on_error,
3604 doc: /* *Non-nil means errors display a backtrace buffer. 3608 doc: /* *Non-nil means errors display a backtrace buffer.
3605More precisely, this happens for any error that is handled 3609More precisely, this happens for any error that is handled