diff options
| author | Paul Eggert | 2013-02-26 23:42:43 -0800 |
|---|---|---|
| committer | Paul Eggert | 2013-02-26 23:42:43 -0800 |
| commit | 6e65b9ccff5999add7069b41c29aed499a2350f0 (patch) | |
| tree | 22bbba80198971f4b7092aeaeb7a6c2d454b804e /src | |
| parent | 3b166f0908a04456bd91a42274a42d401b79c24d (diff) | |
| download | emacs-6e65b9ccff5999add7069b41c29aed499a2350f0.tar.gz emacs-6e65b9ccff5999add7069b41c29aed499a2350f0.zip | |
Qcall_interactively and Qexecute_kbd_macro are now static.
Diffstat (limited to 'src')
| -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 @@ | |||
| 1 | 2013-02-27 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | * callint.c (Qcall_interactively): | ||
| 4 | * macros.c (Qexecute_kbd_macro): | ||
| 5 | Now static. | ||
| 6 | |||
| 1 | 2013-02-26 Bastien Guerry <bzg@gnu.org> | 7 | 2013-02-26 Bastien Guerry <bzg@gnu.org> |
| 2 | 8 | ||
| 3 | * window.c (Frecenter): Tiny docstring enhancement. | 9 | * 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/>. */ | |||
| 29 | #include "keymap.h" | 29 | #include "keymap.h" |
| 30 | 30 | ||
| 31 | Lisp_Object Qminus, Qplus; | 31 | Lisp_Object Qminus, Qplus; |
| 32 | Lisp_Object Qcall_interactively; | 32 | static Lisp_Object Qcall_interactively; |
| 33 | static Lisp_Object Qcommand_debug_status; | 33 | static Lisp_Object Qcommand_debug_status; |
| 34 | static Lisp_Object Qenable_recursive_minibuffers; | 34 | static Lisp_Object Qenable_recursive_minibuffers; |
| 35 | 35 | ||
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); | |||
| 3366 | 3366 | ||
| 3367 | extern Lisp_Object Qminus, Qplus; | 3367 | extern Lisp_Object Qminus, Qplus; |
| 3368 | extern Lisp_Object Qwhen; | 3368 | extern Lisp_Object Qwhen; |
| 3369 | extern Lisp_Object Qcall_interactively, Qmouse_leave_buffer_hook; | 3369 | extern Lisp_Object Qmouse_leave_buffer_hook; |
| 3370 | extern void syms_of_callint (void); | 3370 | extern void syms_of_callint (void); |
| 3371 | 3371 | ||
| 3372 | /* Defined in casefiddle.c. */ | 3372 | /* Defined in casefiddle.c. */ |
| @@ -3527,7 +3527,6 @@ extern Lisp_Object exec_byte_code (Lisp_Object, Lisp_Object, Lisp_Object, | |||
| 3527 | Lisp_Object, ptrdiff_t, Lisp_Object *); | 3527 | Lisp_Object, ptrdiff_t, Lisp_Object *); |
| 3528 | 3528 | ||
| 3529 | /* Defined in macros.c. */ | 3529 | /* Defined in macros.c. */ |
| 3530 | extern Lisp_Object Qexecute_kbd_macro; | ||
| 3531 | extern void init_macros (void); | 3530 | extern void init_macros (void); |
| 3532 | extern void syms_of_macros (void); | 3531 | extern void syms_of_macros (void); |
| 3533 | 3532 | ||
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/>. */ | |||
| 28 | #include "window.h" | 28 | #include "window.h" |
| 29 | #include "keyboard.h" | 29 | #include "keyboard.h" |
| 30 | 30 | ||
| 31 | Lisp_Object Qexecute_kbd_macro; | 31 | static Lisp_Object Qexecute_kbd_macro; |
| 32 | static Lisp_Object Qkbd_macro_termination_hook; | 32 | static Lisp_Object Qkbd_macro_termination_hook; |
| 33 | 33 | ||
| 34 | /* Number of successful iterations so far | 34 | /* Number of successful iterations so far |