aboutsummaryrefslogtreecommitdiffstats
path: root/src/macros.c
diff options
context:
space:
mode:
authorKarl Heuer1995-02-01 22:33:11 +0000
committerKarl Heuer1995-02-01 22:33:11 +0000
commitf5ba00909fcb2afdd534fb4f3ab47c067e8ccf44 (patch)
tree7b6bafc2633d276dff9690133049dba9f17f13a0 /src/macros.c
parentff4b06d3e9a5d0fff4033d65b3a07e36cb39f0ee (diff)
downloademacs-f5ba00909fcb2afdd534fb4f3ab47c067e8ccf44.tar.gz
emacs-f5ba00909fcb2afdd534fb4f3ab47c067e8ccf44.zip
(Fexecute_kbd_macro): Clear prefix arg here, not in command_loop_1.
Diffstat (limited to 'src/macros.c')
-rw-r--r--src/macros.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/macros.c b/src/macros.c
index c19f5c46ebc..8f51a1672b5 100644
--- a/src/macros.c
+++ b/src/macros.c
@@ -215,6 +215,9 @@ COUNT is a repeat count, or nil for once, or 0 for infinite loop.")
215 Vexecuting_macro = final; 215 Vexecuting_macro = final;
216 executing_macro_index = 0; 216 executing_macro_index = 0;
217 217
218 if (!current_perdisplay)
219 abort ();
220 current_perdisplay->Vprefix_arg = Qnil;
218 command_loop_1 (); 221 command_loop_1 ();
219 222
220 QUIT; 223 QUIT;