Qcall_interactively and Qexecute_kbd_macro are now static.
This commit is contained in:
parent
3b166f0908
commit
6e65b9ccff
4 changed files with 9 additions and 4 deletions
|
@ -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.
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue