mirror of
https://github.com/tmux/tmux.git
synced 2025-09-03 14:27:09 +00:00
Pass through backspace for now.
This commit is contained in:
5
screen.c
5
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");
|
||||
|
Reference in New Issue
Block a user