Bug 1004: Use c_toupper in a few more places.
commit1ba7d5a260fc4d5f696b68018426e2017144ce97
authorKalle Olavi Niemitalo <kon@iki.fi>
Sun, 26 Oct 2008 17:47:53 +0000 (26 19:47 +0200)
committerKalle Olavi Niemitalo <Kalle@Astalo.kon.iki.fi>
Sat, 1 Nov 2008 20:32:43 +0000 (1 22:32 +0200)
tree2d9ea3a6a4ae61a2ee6a6fb80f95c666ddb51324
parentaaf6be8a36ff1464ac5102ee8613d557f18b7b2b
Bug 1004: Use c_toupper in a few more places.

src/config/kbdbind.c (parse_keystroke): If the user types "Ctrl-i",
it should mean "Ctrl-I" rather than "Ctrl-İ", because the Ctrl-
combinations are only well known for ASCII characters.  This does not
matter in practice though, because src/terminal/kbd.c converts 0x09
to (KBD_MOD_NONE, KBD_TAB) and not to (KBD_MOD_CTRL, 'I').

src/osdep/beos/beos.c (get_system_env): Changing the locale does not
affect the TERM environment variable, I think, so it should not affect
the interpretation either.
src/config/kbdbind.c
src/osdep/beos/beos.c