aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/write
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1997-09-15 00:42:04 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1997-09-15 00:42:04 +0000
commitfe38e2f8f4c12eef9c35fc4ec4a49cdf7ca06544 (patch)
treeebc49801987f33948e4ee85c885e66ddedf2c932 /usr.bin/write
parent4541df7be4bcc28009d4872ec56b58e9265d2cf3 (diff)
Notes
Diffstat (limited to 'usr.bin/write')
-rw-r--r--usr.bin/write/write.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/write/write.c b/usr.bin/write/write.c
index 0fa94daeb843..908bda04491f 100644
--- a/usr.bin/write/write.c
+++ b/usr.bin/write/write.c
@@ -45,7 +45,7 @@ static const char copyright[] =
static char sccsid[] = "@(#)write.c 8.1 (Berkeley) 6/6/93";
#endif
static const char rcsid[] =
- "$Id: write.c,v 1.8 1997/09/15 00:08:19 ache Exp $";
+ "$Id: write.c,v 1.9 1997/09/15 00:17:38 ache Exp $";
#endif /* not lint */
#include <sys/param.h>
@@ -312,7 +312,8 @@ wr_fputs(s)
PUTC('\r');
} else if (((*s & 0x80) && *s < 0xA0) ||
/* disable upper controls */
- (!isprint(*s) && !isspace(*s) && *s != '\007')
+ (!isprint(*s) && !isspace(*s) &&
+ *s != '\a' && *s != '\b')
) {
if (*s & 0x80) {
*s &= ~0x80;