fold: fix handling of -s

This commit is contained in:
Richard Ipsum 2020-10-09 15:52:11 +01:00 committed by Michael Forney
parent cd9f55f5e1
commit 172cdd98c3
1 changed files with 4 additions and 2 deletions

6
fold.c
View File

@ -28,14 +28,16 @@ foldline(struct line *l, const char *fname) {
eprintf("fwrite <stdout>:"); eprintf("fwrite <stdout>:");
if (l->data[i] != '\n') if (l->data[i] != '\n')
putchar('\n'); putchar('\n');
last = (sflag && spacesect) ? spacesect : i; if (sflag && spacesect)
i = spacesect;
last = i;
col = 0; col = 0;
spacesect = 0; spacesect = 0;
} }
runelen = charntorune(&r, l->data + i, l->len - i); runelen = charntorune(&r, l->data + i, l->len - i);
if (!runelen || r == Runeerror) if (!runelen || r == Runeerror)
eprintf("charntorune: %s: invalid utf\n", fname); eprintf("charntorune: %s: invalid utf\n", fname);
if (sflag && isspacerune(r)) if (sflag && isblankrune(r))
spacesect = i + runelen; spacesect = i + runelen;
if (!bflag && iscntrl(l->data[i])) { if (!bflag && iscntrl(l->data[i])) {
switch(l->data[i]) { switch(l->data[i]) {