diff options
| author | Paul Eggert | 2011-04-04 00:55:46 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-04-04 00:55:46 -0700 |
| commit | fdfc4bf34ecc9d0d7ee2241e246191a5f928a33a (patch) | |
| tree | 09afa009a54d1b46c7c062a50e0e2337db24b7d4 /src/bytecode.c | |
| parent | 12cbf13fe46123b574a1dff5ac246e3e7d514623 (diff) | |
| download | emacs-fdfc4bf34ecc9d0d7ee2241e246191a5f928a33a.tar.gz emacs-fdfc4bf34ecc9d0d7ee2241e246191a5f928a33a.zip | |
* bytecode.c (exec_byte_code): Rename local to avoid shadowing.
Diffstat (limited to 'src/bytecode.c')
| -rw-r--r-- | src/bytecode.c | 4 |
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 | } |