From 7fa60a9dff18807c26ffcf5cf1f8ed2fce6f3250 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Sun, 16 Mar 2008 11:24:35 +0000 Subject: (read_key_sequence): Fix downcasing of letters with modifiers. --- src/keyboard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/keyboard.c') diff --git a/src/keyboard.c b/src/keyboard.c index 2acf6aaa3cc..16b9006b15f 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -10105,7 +10105,7 @@ read_key_sequence (keybuf, bufsize, prompt, dont_downcase_last, XSETINT (new_key, XINT (key) & ~shift_modifier); else XSETINT (new_key, (DOWNCASE (XINT (key) & ~CHAR_MODIFIER_MASK) - | (XINT (key) & ~CHAR_MODIFIER_MASK))); + | (XINT (key) & CHAR_MODIFIER_MASK))); /* We have to do this unconditionally, regardless of whether the lower-case char is defined in the keymaps, because they -- cgit v1.2.1