diff options
-rw-r--r-- | usr.bin/wall/wall.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/usr.bin/wall/wall.c b/usr.bin/wall/wall.c index 083f0f5..791dd36 100644 --- a/usr.bin/wall/wall.c +++ b/usr.bin/wall/wall.c @@ -178,11 +178,9 @@ makemsg(fname) putc('\r', fp); putc('\n', fp); cnt = 0; - } else if (!isprint(ch) && !isspace(ch) && ch != '\007') - { + } else if (!isprint(ch) && !isspace(ch) && ch != '\007') { putc('^', fp); - putc(ch^0x40, fp); /* DEL to ?, others to a -lpha */ + putc(ch^0x40, fp); /* DEL to ?, others to alpha */ } else putc(ch, fp); } |