From: Paul Eggert Date: Mon, 30 May 2011 05:39:59 +0000 (-0700) Subject: * eval.c (Qdebug): Now static. X-Git-Tag: emacs-pretest-24.0.90~104^2~618^2~94 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ed008a6dd3efc2b317643eccf4aba15c00749d27;p=emacs.git * 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. --- diff --git a/src/ChangeLog b/src/ChangeLog index b0b80b47689..b53d9b49a42 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,10 @@ +2011-05-30 Paul Eggert + + * 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 * image.c: Various fixes to ImageMagick code comments. diff --git a/src/eval.c b/src/eval.c index 6b4182cb319..f8bc0a9f6aa 100644 --- a/src/eval.c +++ b/src/eval.c @@ -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 diff --git a/src/lisp.h b/src/lisp.h index 6618a754145..26d09c6d555 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -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;