comparison src/macros.c @ 24482:9b722e922325

(Fexecute_kbd_macro): Initialize executing_macro_iterations at beginning.
author Karl Heuer <kwzh@gnu.org>
date Sun, 14 Mar 1999 06:33:01 +0000
parents 1dd05eb0443d
children 14cc75ebfd7b
comparison
equal deleted inserted replaced
24481:f65692fe7dd5 24482:9b722e922325
253 int pdlcount = specpdl_ptr - specpdl; 253 int pdlcount = specpdl_ptr - specpdl;
254 int repeat = 1; 254 int repeat = 1;
255 struct gcpro gcpro1; 255 struct gcpro gcpro1;
256 int success_count = 0; 256 int success_count = 0;
257 257
258 executing_macro_iterations = 0;
259
258 if (!NILP (count)) 260 if (!NILP (count))
259 { 261 {
260 count = Fprefix_numeric_value (count); 262 count = Fprefix_numeric_value (count);
261 repeat = XINT (count); 263 repeat = XINT (count);
262 } 264 }