aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bytecode.c')
-rw-r--r--src/bytecode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bytecode.c b/src/bytecode.c
index 5879d312b07..b4a5354a0a4 100644
--- a/src/bytecode.c
+++ b/src/bytecode.c
@@ -938,12 +938,12 @@ exec_byte_code (Lisp_Object bytestr, Lisp_Object vector, Lisp_Object maxdepth,
938 938
939 case Bsave_window_excursion: /* Obsolete since 24.1. */ 939 case Bsave_window_excursion: /* Obsolete since 24.1. */
940 { 940 {
941 register int count = SPECPDL_INDEX (); 941 register int count1 = SPECPDL_INDEX ();
942 record_unwind_protect (Fset_window_configuration, 942 record_unwind_protect (Fset_window_configuration,
943 Fcurrent_window_configuration (Qnil)); 943 Fcurrent_window_configuration (Qnil));
944 BEFORE_POTENTIAL_GC (); 944 BEFORE_POTENTIAL_GC ();
945 TOP = Fprogn (TOP); 945 TOP = Fprogn (TOP);
946 unbind_to (count, TOP); 946 unbind_to (count1, TOP);
947 AFTER_POTENTIAL_GC (); 947 AFTER_POTENTIAL_GC ();
948 break; 948 break;
949 } 949 }