From 6dc54bf34afe78e9727a6e9dd7a70d8f95883136 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Fri, 10 Apr 2015 19:21:22 +1000 Subject: [PATCH] Remove crufty parameter from commandline._echoLine. --- common/content/commandline.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/commandline.js b/common/content/commandline.js index 1666ba7c..586140b3 100644 --- a/common/content/commandline.js +++ b/common/content/commandline.js @@ -711,7 +711,7 @@ var CommandLine = Module("commandline", { * @param {boolean} forceSingle If provided, don't let over-long * messages move to the MOW. */ - _echoLine: function echoLine(str, highlightGroup, forceSingle, silent) { + _echoLine: function echoLine(str, highlightGroup, forceSingle) { this.widgets.message = str ? [highlightGroup, str, forceSingle] : null; dactyl.triggerObserver("echoLine", str, highlightGroup, null, forceSingle);