1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-10 05:30:45 -08:00

* bytecode.c (exec_byte_code): Rename local to avoid shadowing.

This commit is contained in:
Paul Eggert 2011-04-04 00:55:46 -07:00
parent 12cbf13fe4
commit fdfc4bf34e
2 changed files with 4 additions and 2 deletions

View file

@ -938,12 +938,12 @@ exec_byte_code (Lisp_Object bytestr, Lisp_Object vector, Lisp_Object maxdepth,
case Bsave_window_excursion: /* Obsolete since 24.1. */
{
register int count = SPECPDL_INDEX ();
register int count1 = SPECPDL_INDEX ();
record_unwind_protect (Fset_window_configuration,
Fcurrent_window_configuration (Qnil));
BEFORE_POTENTIAL_GC ();
TOP = Fprogn (TOP);
unbind_to (count, TOP);
unbind_to (count1, TOP);
AFTER_POTENTIAL_GC ();
break;
}