* fhandler_console.cc (fhandler_console::read): Don't generate ^@ on
Ctrl+Alt+Space.
This commit is contained in:
parent
a23a9b3e95
commit
b9a5b2c45f
|
@ -1,3 +1,8 @@
|
||||||
|
2011-06-24 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* fhandler_console.cc (fhandler_console::read): Don't generate ^@ on
|
||||||
|
Ctrl+Alt+Space.
|
||||||
|
|
||||||
2011-06-22 Corinna Vinschen <corinna@vinschen.de>
|
2011-06-22 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* fhandler_tty.cc (fhandler_pty_master::setup): Create pty pipes
|
* fhandler_tty.cc (fhandler_pty_master::setup): Create pty pipes
|
||||||
|
|
|
@ -457,7 +457,8 @@ restart:
|
||||||
}
|
}
|
||||||
/* Allow Ctrl-Space to emit ^@ */
|
/* Allow Ctrl-Space to emit ^@ */
|
||||||
else if (input_rec.Event.KeyEvent.wVirtualKeyCode == VK_SPACE
|
else if (input_rec.Event.KeyEvent.wVirtualKeyCode == VK_SPACE
|
||||||
&& (control_key_state & CTRL_PRESSED))
|
&& (control_key_state & CTRL_PRESSED)
|
||||||
|
&& !(control_key_state & ALT_PRESSED))
|
||||||
toadd = "";
|
toadd = "";
|
||||||
else if (wch == 0
|
else if (wch == 0
|
||||||
/* arrow/function keys */
|
/* arrow/function keys */
|
||||||
|
|
Loading…
Reference in New Issue