# HG changeset patch # User Andreas Schwab # Date 880118680 0 # Node ID 1030a9fcf001c98f13a4687d95f99eb11c9ff817 # Parent 608c1a9aefc82444fdbef07c775a6c370237e487 Declare finalize_kbd_macro_chars and store_kbd_macro_char. diff -r 608c1a9aefc8 -r 1030a9fcf001 src/macros.h --- a/src/macros.h Fri Nov 21 13:03:55 1997 +0000 +++ b/src/macros.h Fri Nov 21 13:24:40 1997 +0000 @@ -39,3 +39,12 @@ so after an error, it describes the innermost interrupted macro. */ extern Lisp_Object executing_macro; + +/* Declare that all chars stored so far in the kbd macro being defined + really belong to it. This is done in between editor commands. */ + +extern void finalize_kbd_macro_chars P_ ((void)); + +/* Store a character into kbd macro being defined */ + +extern void store_kbd_macro_char P_ ((Lisp_Object));