* fhandler_console.cc (fhandler_console::read): Revert 2001-10-23 change to
only honor keydown events.
This commit is contained in:
parent
a36ee0b6b9
commit
697b8c0c32
|
@ -1,3 +1,8 @@
|
|||
2001-11-12 Christopher Faylor <cgf@redhat.com>
|
||||
|
||||
* fhandler_console.cc (fhandler_console::read): Revert 2001-10-23
|
||||
change to only honor keydown events.
|
||||
|
||||
2001-11-11 Christopher Faylor <cgf@redhat.com>
|
||||
|
||||
* include/cygwin/version.h: Bump version to 1.3.6.
|
||||
|
|
|
@ -259,9 +259,6 @@ fhandler_console::read (void *pv, size_t buflen)
|
|||
#define virtual_key_code (input_rec.Event.KeyEvent.wVirtualKeyCode)
|
||||
#define control_key_state (input_rec.Event.KeyEvent.dwControlKeyState)
|
||||
|
||||
if (!input_rec.Event.KeyEvent.bKeyDown)
|
||||
continue;
|
||||
|
||||
#ifdef DEBUGGING
|
||||
/* allow manual switching to/from raw mode via ctrl-alt-scrolllock */
|
||||
if (input_rec.Event.KeyEvent.bKeyDown &&
|
||||
|
|
Loading…
Reference in New Issue