event->uChar.AsciiChar with 128.
+2010-01-29 Eli Zaretskii <eliz@gnu.org>
+
+ * w32inevt.c (key_event): Remove unnecessary comparison of
+ event->uChar.AsciiChar with 128.
+
2010-01-28 Chong Yidong <cyd@stupidchicken.com>
* fileio.c (Frename_file): Fix last change (Bug#5487).
emacs_ev->kind = NO_EVENT;
return 0;
}
- else if (event->uChar.AsciiChar > 0 && event->uChar.AsciiChar < 128)
+ else if (event->uChar.AsciiChar > 0)
{
emacs_ev->kind = ASCII_KEYSTROKE_EVENT;
emacs_ev->code = event->uChar.AsciiChar;