Pass through backspace for now.

This commit is contained in:
Nicholas Marriott
2007-09-21 19:24:37 +00:00
parent f145108258
commit 1fefbb7a85
5 changed files with 40 additions and 29 deletions

View File

@ -1,4 +1,4 @@
/* $Id: screen.c,v 1.10 2007-09-21 18:00:58 nicm Exp $ */
/* $Id: screen.c,v 1.11 2007-09-21 19:24:37 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@ -395,6 +395,9 @@ screen_character(struct screen *s, u_char ch)
if (s->cx > 0)
s->cx--;
break;
case '\177': /* DC */
/* XXX */
break;
default:
if (ch < ' ')
fatalx("bad control");