diff options
| author | Joakim Verona | 2015-01-11 18:40:21 +0100 |
|---|---|---|
| committer | Joakim Verona | 2015-01-11 18:40:21 +0100 |
| commit | cc7cb20d6abc0f862e5513b24831bba0eaecaa5f (patch) | |
| tree | afc2fc05401504aa0c28699dc3bc155c5b0d7f58 /src/macros.c | |
| parent | d972b504f30ff4300ba368940751e8736dddf0b4 (diff) | |
| parent | 9a57bda31569294ecaf8138a06e5edda9c0d87e3 (diff) | |
| download | emacs-cc7cb20d6abc0f862e5513b24831bba0eaecaa5f.tar.gz emacs-cc7cb20d6abc0f862e5513b24831bba0eaecaa5f.zip | |
merge master, fix conflicts
Diffstat (limited to 'src/macros.c')
| -rw-r--r-- | src/macros.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/macros.c b/src/macros.c index 0801f0ac288..e5b8ab70870 100644 --- a/src/macros.c +++ b/src/macros.c | |||
| @@ -28,9 +28,6 @@ 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 | static Lisp_Object Qexecute_kbd_macro; | ||
| 32 | static Lisp_Object Qkbd_macro_termination_hook; | ||
| 33 | |||
| 34 | /* Number of successful iterations so far | 31 | /* Number of successful iterations so far |
| 35 | for innermost keyboard macro. | 32 | for innermost keyboard macro. |
| 36 | This is not bound at each level, | 33 | This is not bound at each level, |
| @@ -280,7 +277,7 @@ pop_kbd_macro (Lisp_Object info) | |||
| 280 | tem = XCDR (info); | 277 | tem = XCDR (info); |
| 281 | executing_kbd_macro_index = XINT (XCAR (tem)); | 278 | executing_kbd_macro_index = XINT (XCAR (tem)); |
| 282 | Vreal_this_command = XCDR (tem); | 279 | Vreal_this_command = XCDR (tem); |
| 283 | Frun_hooks (1, &Qkbd_macro_termination_hook); | 280 | run_hook (Qkbd_macro_termination_hook); |
| 284 | } | 281 | } |
| 285 | 282 | ||
| 286 | DEFUN ("execute-kbd-macro", Fexecute_kbd_macro, Sexecute_kbd_macro, 1, 3, 0, | 283 | DEFUN ("execute-kbd-macro", Fexecute_kbd_macro, Sexecute_kbd_macro, 1, 3, 0, |