diff options
| author | Erik Naggum | 1996-01-09 03:58:16 +0000 |
|---|---|---|
| committer | Erik Naggum | 1996-01-09 03:58:16 +0000 |
| commit | 1c8c5693802955f9237f05e76b7b6decff8dc4ca (patch) | |
| tree | c18c0a64e798683d0cf9fe2adde64bfab37c05fd /src | |
| parent | 9cd8b13ac2b78cbf576352f38a68a806bf03bc99 (diff) | |
| download | emacs-1c8c5693802955f9237f05e76b7b6decff8dc4ca.tar.gz emacs-1c8c5693802955f9237f05e76b7b6decff8dc4ca.zip | |
(Fexecute_kbd_macro): Reindent properly.
Diffstat (limited to 'src')
| -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.") | |||
| 212 | int repeat = 1; | 212 | int repeat = 1; |
| 213 | struct gcpro gcpro1; | 213 | struct gcpro gcpro1; |
| 214 | 214 | ||
| 215 | if (!NILP (count)) { | 215 | if (!NILP (count)) |
| 216 | count = Fprefix_numeric_value (count); | 216 | { |
| 217 | repeat = XINT (count); | 217 | count = Fprefix_numeric_value (count); |
| 218 | } | 218 | repeat = XINT (count); |
| 219 | } | ||
| 219 | 220 | ||
| 220 | final = indirect_function (macro); | 221 | final = indirect_function (macro); |
| 221 | if (!STRINGP (final) && !VECTORP (final)) | 222 | if (!STRINGP (final) && !VECTORP (final)) |