(finalize_kbd_macro_chars): Likewise.
(init_macros): Likewise.
(syms_of_macros): Likewise.
(keys_of_macros): Likewise.
/* Store character c into kbd macro being defined */
+void
store_kbd_macro_char (c)
Lisp_Object c;
{
/* 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;
return unbind_to (pdlcount, Qnil);
}
\f
+void
init_macros ()
{
Vexecuting_macro = Qnil;
executing_macro = Qnil;
}
+void
syms_of_macros ()
{
Qexecute_kbd_macro = intern ("execute-kbd-macro");
"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");