diff options
Diffstat (limited to 'common/content/commandline.js')
-rw-r--r-- | common/content/commandline.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/content/commandline.js b/common/content/commandline.js index b7a47c8a..8fa7309a 100644 --- a/common/content/commandline.js +++ b/common/content/commandline.js @@ -648,7 +648,7 @@ const CommandLine = Module("commandline", { * commandline.FORCE_MULTILINE - Forces the message to appear in * the MOW. */ - echo: requiresMainThread(function echo(str, highlightGroup, flags) { + echo: function echo(str, highlightGroup, flags) { // dactyl.echo uses different order of flags as it omits the highlight group, change commandline.echo argument order? --mst if (this._silent) return; @@ -694,7 +694,7 @@ const CommandLine = Module("commandline", { if (action) action.call(this, str, highlightGroup, single); - }), + }, /** * Prompt the user. Sets modes.main to COMMAND_LINE, which the user may |