aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/macros.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/macros.h b/src/macros.h
index 2396514ea23..8f3f003e398 100644
--- a/src/macros.h
+++ b/src/macros.h
@@ -39,3 +39,12 @@ extern int executing_macro_iterations;
39 so after an error, it describes the innermost interrupted macro. */ 39 so after an error, it describes the innermost interrupted macro. */
40 40
41extern Lisp_Object executing_macro; 41extern Lisp_Object executing_macro;
42
43/* Declare that all chars stored so far in the kbd macro being defined
44 really belong to it. This is done in between editor commands. */
45
46extern void finalize_kbd_macro_chars P_ ((void));
47
48/* Store a character into kbd macro being defined */
49
50extern void store_kbd_macro_char P_ ((Lisp_Object));