]> git.eshelyaron.com Git - emacs.git/commitdiff
(store_kbd_macro_char): Define as returning nothing.
authorAndreas Schwab <schwab@suse.de>
Fri, 21 Nov 1997 13:03:55 +0000 (13:03 +0000)
committerAndreas Schwab <schwab@suse.de>
Fri, 21 Nov 1997 13:03:55 +0000 (13:03 +0000)
(finalize_kbd_macro_chars): Likewise.
(init_macros): Likewise.
(syms_of_macros): Likewise.
(keys_of_macros): Likewise.

src/macros.c

index 9054fb5bfea5015530ee00df2a0234810a2e151b..af9022209193db0d5650fb182af3bc3ce5b2d6c4 100644 (file)
@@ -143,6 +143,7 @@ An argument of zero means repeat until error.")
 
 /* Store character c into kbd macro being defined */
 
+void
 store_kbd_macro_char (c)
      Lisp_Object c;
 {
@@ -170,6 +171,7 @@ store_kbd_macro_char (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;
@@ -288,12 +290,14 @@ COUNT is a repeat count, or nil for once, or 0 for infinite loop.")
   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");
@@ -319,6 +323,7 @@ syms_of_macros ()
     "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");