From: David Herrmann Date: Mon, 28 May 2012 15:51:51 +0000 (+0200) Subject: vte: explicitely ignore DEL X-Git-Tag: kmscon-7~931 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2e6bac3e6765059de66fbdca849819d1af8b02da;p=platform%2Fupstream%2Fkmscon.git vte: explicitely ignore DEL Add dummy to do_execute() which explicitely ignores the DEL input. Signed-off-by: David Herrmann --- diff --git a/src/vte.c b/src/vte.c index 643dc1b..096b5d9 100644 --- a/src/vte.c +++ b/src/vte.c @@ -264,6 +264,9 @@ static void do_execute(struct kmscon_vte *vte, uint32_t ctrl) /* Invokes an escape sequence */ /* nothing to do here */ break; + case 0x1f: /* DEL */ + /* Ignored */ + break; case 0x84: /* IND */ /* Move down one row, perform scroll-up if needed */ /* TODO */