# HG changeset patch # User Karl Heuer # Date 821154870 0 # Node ID e5e4fe8e968f71041a2e4701a1418b86b6f11d10 # Parent 338f645e6b9a9d919b822e42f269d8c64023c01d (Fexecute_kbd_macro): Local var `pdlcount' renamed from `count' to remove collision with recently renamed argument. diff -r 338f645e6b9a -r e5e4fe8e968f src/macros.c --- a/src/macros.c Tue Jan 09 02:21:31 1996 +0000 +++ b/src/macros.c Tue Jan 09 02:34:30 1996 +0000 @@ -208,13 +208,14 @@ { Lisp_Object final; Lisp_Object tem; - int count = specpdl_ptr - specpdl; + int pdlcount = specpdl_ptr - specpdl; int repeat = 1; struct gcpro gcpro1; - if (!NILP (count)) - count = Fprefix_numeric_value (count), + if (!NILP (count)) { + count = Fprefix_numeric_value (count); repeat = XINT (count); + } final = indirect_function (macro); if (!STRINGP (final) && !VECTORP (final)) @@ -239,7 +240,7 @@ && (STRINGP (Vexecuting_macro) || VECTORP (Vexecuting_macro))); UNGCPRO; - return unbind_to (count, Qnil); + return unbind_to (pdlcount, Qnil); } init_macros ()