Mercurial > emacs
changeset 78141:5589aa4fb553
(Fsetq): Doc fix.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 15 Jul 2007 18:57:54 +0000 |
parents | 53bf760678a9 |
children | e1c89c79b8c1 |
files | src/eval.c |
diffstat | 1 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/eval.c Sun Jul 15 18:57:10 2007 +0000 +++ b/src/eval.c Sun Jul 15 18:57:54 2007 +0000 @@ -97,6 +97,7 @@ Lisp_Object Qand_rest, Qand_optional; Lisp_Object Qdebug_on_error; Lisp_Object Qdeclare; +Lisp_Object Qdebug; /* This holds either the symbol `run-hooks' or nil. It is nil at an early stage of startup, and when Emacs @@ -530,7 +531,7 @@ The second VAL is not computed until after the first SYM is set, and so on; each VAL can use the new value of variables set earlier in the `setq'. The return value of the `setq' form is the value of the last VAL. -usage: (setq SYM VAL SYM VAL ...) */) +usage: (setq [SYM VAL]...) */) (args) Lisp_Object args; { @@ -3600,6 +3601,9 @@ Qand_optional = intern ("&optional"); staticpro (&Qand_optional); + Qdebug = intern ("debug"); + staticpro (&Qdebug); + DEFVAR_LISP ("stack-trace-on-error", &Vstack_trace_on_error, doc: /* *Non-nil means errors display a backtrace buffer. More precisely, this happens for any error that is handled