changeset 15049:61ee56ae39ef

(read_key_sequence): Fix confusion between key and new_key.
author Richard M. Stallman <rms@gnu.org>
date Fri, 19 Apr 1996 09:21:55 +0000
parents 1f316fa0e840
children 7cc3bad1b93e
files src/keyboard.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/keyboard.c	Fri Apr 19 02:40:44 1996 +0000
+++ b/src/keyboard.c	Fri Apr 19 09:21:55 1996 +0000
@@ -6573,7 +6573,7 @@
 	  original_uppercase = key;
 	  original_uppercase_position = t - 1;
 
-	  if (XINT (new_key) & shift_modifier)
+	  if (XINT (key) & shift_modifier)
 	    XSETINT (new_key, XINT (key) & ~shift_modifier);
 	  else
 	    XSETINT (new_key, (DOWNCASE (XINT (key) & 0x3ffff)