Remove trailing whitespace in col.c

This commit is contained in:
FRIGN 2015-03-04 18:48:44 +01:00
parent 7cb966c170
commit 4c4e5a3eb2
1 changed files with 2 additions and 2 deletions

4
col.c
View File

@ -143,7 +143,7 @@ col(void)
continue;
newchar('\x1b');
if (c != EOF)
newchar(c);
newchar(c);
break;
case '\v':
linefeed(-1, 0);
@ -179,7 +179,7 @@ allocbuf(void)
buff = emalloc(sizeof(*buff) * pagsize);
for (bp = buff; bp < &buff[pagsize]; ++bp)
*bp = emalloc(NCOLS);
*bp = emalloc(NCOLS);
}
static void