Skip to content
Snippets Groups Projects
Commit f8eab94f authored by deuce's avatar deuce
Browse files

Open the output file in binary mode to prevent \r\r\n from being written

as the line terminator.  Should fix double-spacing bug under Win32 with
FTN software.
parent fe56ab65
Branches
Tags
No related merge requests found
......@@ -1749,7 +1749,7 @@ function edit(quote_first)
break;
case '\x1a': /* CTRL-Z (EOF) (PgUp in SyncEdit) */
var f=new File((argc==0?system.temp_dir+"INPUT.MSG":argv[0]));
f.open("w");
f.open("wb");
var s=make_strings(true,true);
f.write(s[0]);
f.close();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment