Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2010-04-11 23:11:17 +0400
committerCorinna Vinschen <corinna@vinschen.de>2010-04-11 23:11:17 +0400
commit0250709234dc806b3d9f608da9a487c71fc8c462 (patch)
tree92c8aa15a5b92fdb8ed9acdab174d45d5db87698 /winsup/cygwin/fhandler.h
parente4f6022e522ff02fd1c9f9a557ff6293d76419e7 (diff)
* fhandler.h (class dev_console): Add backspace_keycode member.
* fhandler_console.cc (fhandler_console::get_tty_stuff): Initialize backspace_keycode with CERASE. (fhandler_console::read): Return dev_state->backspace_keycode if the backspace key is pressed. (fhandler_console::char_command): Implement DECBKM escape sequence.
Diffstat (limited to 'winsup/cygwin/fhandler.h')
-rw-r--r--winsup/cygwin/fhandler.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/winsup/cygwin/fhandler.h b/winsup/cygwin/fhandler.h
index 26a7585d7..cf9d7b9ae 100644
--- a/winsup/cygwin/fhandler.h
+++ b/winsup/cygwin/fhandler.h
@@ -924,6 +924,7 @@ class dev_console
bool iso_2022_G1;
bool alternate_charset_active;
bool metabit;
+ char backspace_keycode;
char my_title_buf [TITLESIZE + 1];