From: Paul Eggert Date: Wed, 27 Feb 2013 07:42:43 +0000 (-0800) Subject: Qcall_interactively and Qexecute_kbd_macro are now static. X-Git-Tag: emacs-24.3.90~173^2~6^2~34 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6e65b9ccff5999add7069b41c29aed499a2350f0;p=emacs.git Qcall_interactively and Qexecute_kbd_macro are now static. --- diff --git a/src/ChangeLog b/src/ChangeLog index 5e3112a26af..f5617487fda 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2013-02-27 Paul Eggert + + * callint.c (Qcall_interactively): + * macros.c (Qexecute_kbd_macro): + Now static. + 2013-02-26 Bastien Guerry * window.c (Frecenter): Tiny docstring enhancement. diff --git a/src/callint.c b/src/callint.c index b0d4bcdd011..212dd2e3d62 100644 --- a/src/callint.c +++ b/src/callint.c @@ -29,7 +29,7 @@ along with GNU Emacs. If not, see . */ #include "keymap.h" Lisp_Object Qminus, Qplus; -Lisp_Object Qcall_interactively; +static Lisp_Object Qcall_interactively; static Lisp_Object Qcommand_debug_status; static Lisp_Object Qenable_recursive_minibuffers; diff --git a/src/lisp.h b/src/lisp.h index e0a8b237e72..e696371c58b 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -3366,7 +3366,7 @@ extern void syms_of_minibuf (void); extern Lisp_Object Qminus, Qplus; extern Lisp_Object Qwhen; -extern Lisp_Object Qcall_interactively, Qmouse_leave_buffer_hook; +extern Lisp_Object Qmouse_leave_buffer_hook; extern void syms_of_callint (void); /* Defined in casefiddle.c. */ @@ -3527,7 +3527,6 @@ extern Lisp_Object exec_byte_code (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, ptrdiff_t, Lisp_Object *); /* Defined in macros.c. */ -extern Lisp_Object Qexecute_kbd_macro; extern void init_macros (void); extern void syms_of_macros (void); diff --git a/src/macros.c b/src/macros.c index 0dcfbe5532c..48d23a977b1 100644 --- a/src/macros.c +++ b/src/macros.c @@ -28,7 +28,7 @@ along with GNU Emacs. If not, see . */ #include "window.h" #include "keyboard.h" -Lisp_Object Qexecute_kbd_macro; +static Lisp_Object Qexecute_kbd_macro; static Lisp_Object Qkbd_macro_termination_hook; /* Number of successful iterations so far