diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-04-29 17:06:45 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-04-29 17:06:45 +0000 |
commit | 7c5f1af26f88a919dd8aebd03a413907aa6791fd (patch) | |
tree | 99c783e9825c87d14df3b333563c62362ee8ea5b | |
parent | 53dc88e2762b0ef24d4d6f9385e6459efb724288 (diff) | |
download | rtmux-7c5f1af26f88a919dd8aebd03a413907aa6791fd.tar.gz rtmux-7c5f1af26f88a919dd8aebd03a413907aa6791fd.tar.bz2 rtmux-7c5f1af26f88a919dd8aebd03a413907aa6791fd.zip |
Ignore del too.
-rw-r--r-- | tty.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: tty.c,v 1.92 2009-04-02 21:08:15 nicm Exp $ */ +/* $Id: tty.c,v 1.93 2009-04-29 17:06:45 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -314,7 +314,7 @@ tty_putc(struct tty *tty, char ch) ch = tty_get_acs(tty, ch); buffer_write8(tty->out, ch); - if (ch >= 0x20) { + if (ch >= 0x20 && ch != 0x7f) { sx = tty->sx; if (tty->term->flags & TERM_EARLYWRAP) sx--; |