emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r104431: * eval.c (Qdebug): Now stati


From: Paul Eggert
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r104431: * eval.c (Qdebug): Now static.
Date: Sun, 29 May 2011 22:39:59 -0700
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 104431
committer: Paul Eggert <address@hidden>
branch nick: trunk
timestamp: Sun 2011-05-29 22:39:59 -0700
message:
  * eval.c (Qdebug): Now static.
  
  * lisp.h (Qdebug): Remove decl.  This reverts a part of the
  2011-04-26 change (bzr 104015) that inadvertently undid part of
  the 2011-04-14 change (bzr 103913).
modified:
  src/ChangeLog
  src/eval.c
  src/lisp.h
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2011-05-29 18:17:28 +0000
+++ b/src/ChangeLog     2011-05-30 05:39:59 +0000
@@ -1,3 +1,10 @@
+2011-05-30  Paul Eggert  <address@hidden>
+
+       * eval.c (Qdebug): Now static.
+       * lisp.h (Qdebug): Remove decl.  This reverts a part of the
+       2011-04-26 change (bzr 104015) that inadvertently undid part of
+       the 2011-04-14 change (bzr 103913).
+
 2011-05-29  Chong Yidong  <address@hidden>
 
        * image.c: Various fixes to ImageMagick code comments.

=== modified file 'src/eval.c'
--- a/src/eval.c        2011-05-04 07:19:21 +0000
+++ b/src/eval.c        2011-05-30 05:39:59 +0000
@@ -88,7 +88,7 @@
 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

=== modified file 'src/lisp.h'
--- a/src/lisp.h        2011-05-22 07:12:24 +0000
+++ b/src/lisp.h        2011-05-30 05:39:59 +0000
@@ -2836,7 +2836,7 @@
 
 /* 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;


reply via email to

[Prev in Thread] Current Thread [Next in Thread]