summaryrefslogtreecommitdiffstats
path: root/screen.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-09-21 19:24:37 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-09-21 19:24:37 +0000
commit1fefbb7a85b172dfb0d3323619f989280512b506 (patch)
treeba9098d72d604c8ee3902358742c38c09c08431c /screen.c
parentf14510825856746cbade5ec6377c2ad3f7d9a269 (diff)
Pass through backspace for now.
Diffstat (limited to 'screen.c')
-rw-r--r--screen.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/screen.c b/screen.c
index 7ca722bb..1d968e4f 100644
--- a/screen.c
+++ b/screen.c
@@ -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");