From 7c5f1af26f88a919dd8aebd03a413907aa6791fd Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Wed, 29 Apr 2009 17:06:45 +0000 Subject: [PATCH] Ignore del too. --- tty.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tty.c b/tty.c index 3376c605..92f9e672 100644 --- a/tty.c +++ b/tty.c @@ -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 @@ -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--;