1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 23:42:27 +01:00

Remove crufty parameter from commandline._echoLine.

This commit is contained in:
Doug Kearns
2015-04-10 19:21:22 +10:00
parent df81b7fca2
commit 6dc54bf34a

View File

@@ -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);