diff options
-rw-r--r-- | src/ChangeLog | 6 | ||||
-rw-r--r-- | src/callint.c | 2 | ||||
-rw-r--r-- | src/lisp.h | 3 | ||||
-rw-r--r-- | src/macros.c | 2 |
4 files changed, 9 insertions, 4 deletions
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 <eggert@cs.ucla.edu> + + * callint.c (Qcall_interactively): + * macros.c (Qexecute_kbd_macro): + Now static. + 2013-02-26 Bastien Guerry <bzg@gnu.org> * 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 <http://www.gnu.org/licenses/>. */ #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 <http://www.gnu.org/licenses/>. */ #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 |