diff options
author | Erik Naggum <erik@naggum.no> | 1996-01-09 03:58:16 +0000 |
---|---|---|
committer | Erik Naggum <erik@naggum.no> | 1996-01-09 03:58:16 +0000 |
commit | b0f82760991d600f6b05450ba14760c8b17fa815 (patch) | |
tree | 7d79237737be58be7d1f22aab678972516cfe8ba /src/macros.c | |
parent | 982f2d7b2deee3f1991c30005f8b2620847e384d (diff) | |
download | emacs-b0f82760991d600f6b05450ba14760c8b17fa815.tar.gz |
(Fexecute_kbd_macro): Reindent properly.
Diffstat (limited to 'src/macros.c')
-rw-r--r-- | src/macros.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/macros.c b/src/macros.c index 80e3025a9a8..66a63a6a1df 100644 --- a/src/macros.c +++ b/src/macros.c @@ -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)) |