diff src/macros.c @ 49600:23a1cea22d13

Trailing whitespace deleted.
author Juanma Barranquero <lekktu@gmail.com>
date Tue, 04 Feb 2003 14:56:31 +0000
parents 7e9809c820b0
children 282c490f6cd4
line wrap: on
line diff
--- a/src/macros.c	Tue Feb 04 13:30:45 2003 +0000
+++ b/src/macros.c	Tue Feb 04 14:56:31 2003 +0000
@@ -62,7 +62,7 @@
 Use \\[name-last-kbd-macro] to give it a permanent name.
 Non-nil arg (prefix arg) means append to last macro defined;
 this begins by re-executing that macro as if you typed it again.
-If optional second arg, NO-EXEC, is non-nil, do not re-execute last 
+If optional second arg, NO-EXEC, is non-nil, do not re-execute last
 macro before appending to it. */)
      (append, no_exec)
      Lisp_Object append, no_exec;
@@ -127,7 +127,7 @@
       message ("Appending to kbd macro...");
     }
   current_kboard->defining_kbd_macro = Qt;
-  
+
   return Qnil;
 }
 
@@ -155,7 +155,7 @@
 counting the definition just completed as the first repetition.
 An argument of zero means repeat until error.
 
-In Lisp, optional second arg LOOPFUNC may be a function that is called prior to 
+In Lisp, optional second arg LOOPFUNC may be a function that is called prior to
 each iteration of the macro.  Iteration stops if LOOPFUNC returns nil.  */)
      (repeat, loopfunc)
      Lisp_Object repeat, loopfunc;
@@ -198,7 +198,7 @@
       if (kb->kbd_macro_ptr - kb->kbd_macro_buffer == kb->kbd_macro_bufsize)
 	{
 	  int ptr_offset, end_offset, nbytes;
-	  
+
 	  ptr_offset = kb->kbd_macro_ptr - kb->kbd_macro_buffer;
 	  end_offset = kb->kbd_macro_end - kb->kbd_macro_buffer;
 	  kb->kbd_macro_bufsize *= 2;
@@ -208,7 +208,7 @@
 	  kb->kbd_macro_ptr = kb->kbd_macro_buffer + ptr_offset;
 	  kb->kbd_macro_end = kb->kbd_macro_buffer + end_offset;
 	}
-      
+
       *kb->kbd_macro_ptr++ = c;
     }
 }
@@ -248,9 +248,9 @@
 A prefix argument serves as a repeat count.  Zero means repeat until error.
 
 To make a macro permanent so you can call it even after
-defining others, use \\[name-last-kbd-macro].  
+defining others, use \\[name-last-kbd-macro].
 
-In Lisp, optional second arg LOOPFUNC may be a function that is called prior to 
+In Lisp, optional second arg LOOPFUNC may be a function that is called prior to
 each iteration of the macro.  Iteration stops if LOOPFUNC returns nil.  */)
      (prefix, loopfunc)
      Lisp_Object prefix, loopfunc;
@@ -295,9 +295,9 @@
 DEFUN ("execute-kbd-macro", Fexecute_kbd_macro, Sexecute_kbd_macro, 1, 3, 0,
        doc: /* Execute MACRO as string of editor command characters.
 If MACRO is a symbol, its function definition is used.
-COUNT is a repeat count, or nil for once, or 0 for infinite loop. 
+COUNT is a repeat count, or nil for once, or 0 for infinite loop.
 
-Optional third arg LOOPFUNC may be a function that is called prior to 
+Optional third arg LOOPFUNC may be a function that is called prior to
 each iteration of the macro.  Iteration stops if LOOPFUNC returns nil.  */)
      (macro, count, loopfunc)
      Lisp_Object macro, count, loopfunc;