mflow: only accept flowed line with final space when reflowing

pull/75/head
Leah Neukirchen 7 years ago
parent 6557dec05b
commit 7e9a73397b

@ -188,7 +188,7 @@ main(int argc, char *argv[])
continue;
}
if (rd > 0 && line[rd-1] == ' ') { // flowed line
if (reflow && rd > 0 && line[rd-1] == ' ') { // flowed line
if (delsp)
line[--rd] = 0;
flowed(quotes, line, rd);

Loading…
Cancel
Save