Fix some improperly wrapped lines in the code.

This commit is contained in:
alex 1996-08-11 02:20:05 +00:00
parent b0b6f5d7b9
commit 057f2934d8

View File

@ -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);
}