Mercurial > emacs
changeset 35119:97a19f647a12
(Qkbd_macro_termination_hook): New variable.
(syms_of_macros): Initialize and staticpro it.
(pop_kbd_macro): Run kbd-macro-termination-hook.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Mon, 08 Jan 2001 12:23:32 +0000 |
parents | 53621ef3713e |
children | ec6003a7be16 |
files | src/macros.c |
diffstat | 1 files changed, 5 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/macros.c Sun Jan 07 21:15:54 2001 +0000 +++ b/src/macros.c Mon Jan 08 12:23:32 2001 +0000 @@ -1,5 +1,5 @@ /* Keyboard macros. - Copyright (C) 1985, 1986, 1993, 2000 Free Software Foundation, Inc. + Copyright (C) 1985, 1986, 1993, 2000, 2001 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -27,7 +27,7 @@ #include "window.h" #include "keyboard.h" -Lisp_Object Qexecute_kbd_macro; +Lisp_Object Qexecute_kbd_macro, Qkbd_macro_termination_hook; /* Kbd macro currently being executed (a string or vector). */ @@ -273,6 +273,7 @@ tem = XCDR (info); executing_macro_index = XINT (XCAR (tem)); real_this_command = XCDR (tem); + Frun_hooks (1, &Qkbd_macro_termination_hook); return Qnil; } @@ -344,6 +345,8 @@ { Qexecute_kbd_macro = intern ("execute-kbd-macro"); staticpro (&Qexecute_kbd_macro); + Qkbd_macro_termination_hook = intern ("kbd-macro-termination-hook"); + staticpro (&Qkbd_macro_termination_hook); defsubr (&Sstart_kbd_macro); defsubr (&Send_kbd_macro);