From 828dbf9f3c0aea98ae0b65ddb04646e9652f3daa Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Thu, 4 Oct 2007 18:36:24 +0200 Subject: edit: add 8 as backspace code --- commands/edit.c | 1 + 1 file changed, 1 insertion(+) (limited to 'commands/edit.c') diff --git a/commands/edit.c b/commands/edit.c index ae2fb8c40a..fd9afba8a4 100644 --- a/commands/edit.c +++ b/commands/edit.c @@ -500,6 +500,7 @@ static int do_edit(cmd_tbl_t * cmdtp, int argc, char *argv[]) split_line(); break; case 127: + case 8: if (textx > 0) { textx--; delete_char(textx); -- cgit v1.2.3