1.0.0beta5
- Remove all newlines and carriage returns from the end of each line read by
editorOpen()
, by changingif (linelen > 0 && ...
towhile (linelen > 0 && ...
. This allows text files with DOS line endings (\r\n
) to be opened properly.
editorOpen()
, by changing if (linelen > 0 && ...
to while (linelen > 0 && ...
. This allows text files with DOS line endings (\r\n
) to be opened properly.