vte: explicitely ignore DEL

Add dummy to do_execute() which explicitely ignores the DEL input.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
This commit is contained in:
David Herrmann 2012-05-28 17:51:51 +02:00
parent b1e5d75220
commit 2e6bac3e67

View File

@ -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 */