summaryrefslogtreecommitdiffstats
path: root/key-string.c
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2009-07-28 22:37:02 +0000
committerTiago Cunha <tcunha@gmx.com>2009-07-28 22:37:02 +0000
commit361801aaaa4f68768f7f45695c51bbe5a1acee2b (patch)
tree575efc02cb16abad18f951092daf963abaceb2a8 /key-string.c
parent2aa4d473121520167962756c5323865c73607186 (diff)
Sync OpenBSD patchset 184:
Detect backspace by looking at termios VERASE and translate it into \177 (which matches screen's behaviour if not its termcap/terminfo entry). The terminfo kbs cap is often wrong or missing so it can't be used, and just assuming \177 may be wrong.
Diffstat (limited to 'key-string.c')
-rw-r--r--key-string.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/key-string.c b/key-string.c
index bf2d9b15..5dfd2e61 100644
--- a/key-string.c
+++ b/key-string.c
@@ -1,4 +1,4 @@
-/* $Id: key-string.c,v 1.20 2009-07-25 08:53:48 tcunha Exp $ */
+/* $Id: key-string.c,v 1.21 2009-07-28 22:37:02 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -57,7 +57,7 @@ struct {
{ "PPage", KEYC_PPAGE },
{ "Tab", '\011' },
{ "BTab", KEYC_BTAB },
- { "BSpace", '\177' },
+ { "BSpace", KEYC_BSPACE },
/* Arrow keys. */
{ "Up", KEYC_UP },