* eval.c (Qdebug): Now static.
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 30 May 2011 05:39:59 +0000 (22:39 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 30 May 2011 05:39:59 +0000 (22:39 -0700)
* lisp.h (Qdebug): Remove decl.  This reverts a part of the
2011-04-26T11:26:05Z!dan.colascione@gmail.com that inadvertently undid part of
2011-04-14T06:48:41Z!eggert@cs.ucla.edu.

src/ChangeLog
src/eval.c
src/lisp.h

index b0b80b4..b53d9b4 100644 (file)
@@ -1,3 +1,10 @@
+2011-05-30  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * eval.c (Qdebug): Now static.
+       * lisp.h (Qdebug): Remove decl.  This reverts a part of the
+       2011-04-26T11:26:05Z!dan.colascione@gmail.com that inadvertently undid part of
+       2011-04-14T06:48:41Z!eggert@cs.ucla.edu.
+
 2011-05-29  Chong Yidong  <cyd@stupidchicken.com>
 
        * image.c: Various fixes to ImageMagick code comments.
index 6b4182c..f8bc0a9 100644 (file)
@@ -88,7 +88,7 @@ static Lisp_Object Qdebug_on_error;
 static Lisp_Object Qdeclare;
 Lisp_Object Qinternal_interpreter_environment, Qclosure;
 
-Lisp_Object Qdebug;
+static Lisp_Object Qdebug;
 
 /* This holds either the symbol `run-hooks' or nil.
    It is nil at an early stage of startup, and when Emacs
index 6618a75..26d09c6 100644 (file)
@@ -2836,7 +2836,7 @@ extern void syms_of_lread (void);
 
 /* Defined in eval.c.  */
 extern Lisp_Object Qautoload, Qexit, Qinteractive, Qcommandp, Qdefun, Qmacro;
-extern Lisp_Object Qinhibit_quit, Qclosure, Qdebug;
+extern Lisp_Object Qinhibit_quit, Qclosure;
 extern Lisp_Object Qand_rest;
 extern Lisp_Object Vautoload_queue;
 extern Lisp_Object Vsignaling_function;