Skip to content

Commit

Permalink
Merge branch 'master' of ../cvs/exec
Browse files Browse the repository at this point in the history
  • Loading branch information
RealDeuce committed Apr 26, 2020
2 parents 14dc9b5 + 303e901 commit 89feb19
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions exec/fseditor.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/* ToDo: At what point should trailing whitespace be removed? */
/* $Id: fseditor.js,v 1.103 2019/08/31 05:13:58 rswindell Exp $ */
/* $Id: fseditor.js,v 1.104 2020/04/26 08:20:59 rswindell Exp $ */

load("sbbsdefs.js");

const REVISION = "$Revision: 1.103 $".split(' ')[1];
const REVISION = "$Revision: 1.104 $".split(' ')[1];
require("text.js", 'FileNotReceived');

if(!bbs.mods.userprops)
Expand Down Expand Up @@ -1444,7 +1444,8 @@ function save_file()
{
var f=new File(output_filename());
if(!f.open("wb")) {
alert("Error " + f.error + " opening " + f.name);
console.clear();
js.report_error(f.error + " (" + errno_str + ") opening " + f.name, true);
return false;
}
var s=make_strings(/* soft-CRs: */Boolean(options.soft_cr), /* embed-colors: */true);
Expand Down Expand Up @@ -1960,6 +1961,7 @@ console.ctrlkey_passthru="+ACGKLNPQRTUVWXYZ_";
/* Enable delete line in SyncTERM (Disabling ANSI Music in the process) */
console.write("\033[=1M");
console.clear();
console.writeln("Opening " + input_filename);
var f=new File(input_filename);
if(f.open("r",false)) {
ypos=0;
Expand Down

0 comments on commit 89feb19

Please sign in to comment.