# HG changeset patch # User Richard M. Stallman # Date 1184525874 0 # Node ID 5589aa4fb5532ee15b80151b05496ed425593bf7 # Parent 53bf760678a95b92482f52f695d848b8c90a2ad0 (Fsetq): Doc fix. diff -r 53bf760678a9 -r 5589aa4fb553 src/eval.c --- 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