better fmt -j
This commit is contained in:
parent
1bb8ccf14e
commit
565fd89edf
1 changed files with 5 additions and 1 deletions
|
|
@ -144,8 +144,12 @@ parseline(char *line, Word **words, int *nwordp)
|
||||||
}
|
}
|
||||||
/* how long is this word? */
|
/* how long is this word? */
|
||||||
for(l=0; line[l]; l++)
|
for(l=0; line[l]; l++)
|
||||||
if(line[l]==' ' || line[l]=='\t')
|
if(line[l]==' ' || line[l]=='\t'){
|
||||||
|
if(join)
|
||||||
|
while(line[l]==' ' || line[l]=='\t')
|
||||||
|
l++;
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
words = addword(words, nwordp, line, l, indent, bol);
|
words = addword(words, nwordp, line, l, indent, bol);
|
||||||
bol = 0;
|
bol = 0;
|
||||||
line += l;
|
line += l;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue