NODEBUG should also use uncompiled code

This commit is contained in:
Jeff Parsons 2015-05-11 19:18:41 -07:00 committed by jeffpar
commit a72d7e88f8

View file

@ -1777,7 +1777,11 @@ HTMLOut.prototype.processMachines = function(aMachines, done)
var fDebugger = infoMachine['debugger'];
if (fDebugger === undefined) fDebugger = false; // default to no debugger
var fNoDebug = !this.fDebug || net.hasParm(net.GORT_COMMAND, net.GORT_NODEBUG, this.req);
var fNoDebug = !this.fDebug;
if (net.hasParm(net.GORT_COMMAND, net.GORT_NODEBUG, this.req)) {
fNoDebug = true;
fCompiled = false;
}
var sScriptEmbed = "";
if (infoMachine['func']) {