billiob pushed a commit to branch master.

http://git.enlightenment.org/apps/terminology.git/commit/?id=8df2ed4c21b2061eec56f71827737b910f638488

commit 8df2ed4c21b2061eec56f71827737b910f638488
Author: Boris Faure <bill...@gmail.com>
Date:   Tue Jun 18 23:43:00 2013 +0200

    compat: fix backspace
    
    According to
    http://invisible-island.net/ncurses/terminfo.ti.html#tic-xterm-basic ,
    xterm sends ^H == \b == 0x08.
---
 src/bin/keyin.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/bin/keyin.c b/src/bin/keyin.c
index 664491f..a420893 100644
--- a/src/bin/keyin.c
+++ b/src/bin/keyin.c
@@ -84,8 +84,8 @@ static const Keyout alt_keyout[] =
 
 static const Keyout keyout[] =
 {
-   KEY("BackSpace",    "\177"),
-//   KEY("BackSpace",    "\b"),
+//   KEY("BackSpace",    "\177"),
+   KEY("BackSpace",    "\b"),
    KEY("Left",         "\033[D"),
    KEY("Right",        "\033[C"),
    KEY("Up",           "\033[A"),

-- 


Reply via email to