Improved mbox cr/lf processing

pull/197/head
M66B 4 years ago
parent d48fb6b89a
commit 1973202ec3

@ -920,9 +920,12 @@ public class FragmentFolders extends FragmentBase {
else else
cr = true; cr = true;
} else if (b == 10) { } else if (b == 10) {
if (lf) if (cr)
line(); line();
else else if (lf) {
line();
lf = true;
} else
lf = true; lf = true;
} else { } else {
if (cr || lf) if (cr || lf)

Loading…
Cancel
Save