# HG changeset patch # User Andreas Schwab # Date 880117435 0 # Node ID 608c1a9aefc82444fdbef07c775a6c370237e487 # Parent b7d23d2eded19293b8bcbf05df3ea12314ae853b (store_kbd_macro_char): Define as returning nothing. (finalize_kbd_macro_chars): Likewise. (init_macros): Likewise. (syms_of_macros): Likewise. (keys_of_macros): Likewise. diff -r b7d23d2eded1 -r 608c1a9aefc8 src/macros.c --- a/src/macros.c Fri Nov 21 12:54:36 1997 +0000 +++ b/src/macros.c Fri Nov 21 13:03:55 1997 +0000 @@ -143,6 +143,7 @@ /* Store character c into kbd macro being defined */ +void store_kbd_macro_char (c) Lisp_Object c; { @@ -170,6 +171,7 @@ /* Declare that all chars stored so far in the kbd macro being defined really belong to it. This is done in between editor commands. */ +void finalize_kbd_macro_chars () { current_kboard->kbd_macro_end = current_kboard->kbd_macro_ptr; @@ -288,12 +290,14 @@ return unbind_to (pdlcount, Qnil); } +void init_macros () { Vexecuting_macro = Qnil; executing_macro = Qnil; } +void syms_of_macros () { Qexecute_kbd_macro = intern ("execute-kbd-macro"); @@ -319,6 +323,7 @@ "Last kbd macro defined, as a string or vector; nil if none defined."); } +void keys_of_macros () { initial_define_key (control_x_map, ('e'), "call-last-kbd-macro");