summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/macros.c9
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))