From 2b00c45114fc897afa8e0e7e974b0da6ac989e72 Mon Sep 17 00:00:00 2001 From: ache Date: Mon, 15 Sep 1997 00:42:04 +0000 Subject: Allow backspace too --- libexec/comsat/comsat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libexec/comsat') diff --git a/libexec/comsat/comsat.c b/libexec/comsat/comsat.c index f37796c..18deb62 100644 --- a/libexec/comsat/comsat.c +++ b/libexec/comsat/comsat.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: comsat.c,v 1.8 1997/02/22 14:21:23 peter Exp $ + * $Id: comsat.c,v 1.9 1997/09/15 00:27:49 ache Exp $ */ #ifndef lint @@ -296,7 +296,7 @@ jkfprintf(tp, user, file, offset) */ if (((ch & 0x80) && ch < 0xA0) || (!(ch & 0x80) && !isprint(ch) && - !isspace(ch) && ch != '\007') + !isspace(ch) && ch != '\a' && ch != '\b') ) { if (ch & 0x80) { ch &= ~0x80; -- cgit v1.1