From 057f2934d806c44b26c1f2871035aaddbdc13c86 Mon Sep 17 00:00:00 2001 From: alex Date: Sun, 11 Aug 1996 02:20:05 +0000 Subject: Fix some improperly wrapped lines in the code. --- usr.bin/wall/wall.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'usr.bin') 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); } -- cgit v1.1