]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fexecute_kbd_macro): Reindent properly.
authorErik Naggum <erik@naggum.no>
Tue, 9 Jan 1996 03:58:16 +0000 (03:58 +0000)
committerErik Naggum <erik@naggum.no>
Tue, 9 Jan 1996 03:58:16 +0000 (03:58 +0000)
src/macros.c

index 80e3025a9a8eca0b89dc994710acbcd9d4cc41d0..66a63a6a1dfc10cb50afaf773f4b94f409498bc0 100644 (file)
@@ -212,10 +212,11 @@ COUNT is a repeat count, or nil for once, or 0 for infinite loop.")
   int repeat = 1;
   struct gcpro gcpro1;
 
-  if (!NILP (count)) {
-    count = Fprefix_numeric_value (count);
-    repeat = XINT (count);
-  }
+  if (!NILP (count))
+    {
+      count = Fprefix_numeric_value (count);
+      repeat = XINT (count);
+    }
 
   final = indirect_function (macro);
   if (!STRINGP (final) && !VECTORP (final))