From 84f0cb1ab4ef245d905e31fa8cdf41b599b9d66a Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Thu, 26 Jun 2008 13:11:54 +0000 Subject: [PATCH] VERASE is ^?. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26136 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/terminal/Shell.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/terminal/Shell.cpp b/src/apps/terminal/Shell.cpp index 74c767a0b5..09d73a512f 100644 --- a/src/apps/terminal/Shell.cpp +++ b/src/apps/terminal/Shell.cpp @@ -425,7 +425,7 @@ Shell::_Spawn(int row, int col, const char *encoding, int argc, const char **arg /* set control characters. */ tio.c_cc[VINTR] = 'C' & 0x1f; /* '^C' */ tio.c_cc[VQUIT] = CQUIT; /* '^\' */ - tio.c_cc[VERASE] = 0x08; /* '^H' */ + tio.c_cc[VERASE] = 0x7f; /* '^?' */ tio.c_cc[VKILL] = 'U' & 0x1f; /* '^U' */ tio.c_cc[VEOF] = CEOF; /* '^D' */ tio.c_cc[VEOL] = CEOL; /* '^@' */