From a72d7e88f853b0dcb2f9babca56382bc9f86f4da Mon Sep 17 00:00:00 2001 From: Jeff Parsons Date: Mon, 11 May 2015 19:18:41 -0700 Subject: [PATCH] NODEBUG should also use uncompiled code --- modules/htmlout/lib/htmlout.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/htmlout/lib/htmlout.js b/modules/htmlout/lib/htmlout.js index 986ecd591..f537ae6a9 100644 --- a/modules/htmlout/lib/htmlout.js +++ b/modules/htmlout/lib/htmlout.js @@ -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']) {