[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/eval.c,v [EMACS_22_BASE]
From: |
Richard M. Stallman |
Subject: |
[Emacs-diffs] Changes to emacs/src/eval.c,v [EMACS_22_BASE] |
Date: |
Sun, 15 Jul 2007 18:57:55 +0000 |
CVSROOT: /cvsroot/emacs
Module name: emacs
Branch: EMACS_22_BASE
Changes by: Richard M. Stallman <rms> 07/07/15 18:57:54
Index: eval.c
===================================================================
RCS file: /cvsroot/emacs/emacs/src/eval.c,v
retrieving revision 1.276
retrieving revision 1.276.2.1
diff -u -b -r1.276 -r1.276.2.1
--- eval.c 21 Jan 2007 04:18:16 -0000 1.276
+++ eval.c 15 Jul 2007 18:57:54 -0000 1.276.2.1
@@ -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
- [Emacs-diffs] Changes to emacs/src/eval.c,v [EMACS_22_BASE],
Richard M. Stallman <=