From 17c1d8595f3e8fd1993551bb9ada032ecece1c2c Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Mon, 29 Jul 2013 23:07:16 +1000 Subject: [PATCH] Make :yank yank again. Fixes issue #1012. --- 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 f01cbb0b..1b7a371c 100644 --- a/common/content/commandline.js +++ b/common/content/commandline.js @@ -845,7 +845,7 @@ var CommandLine = Module("commandline", { this._lastEchoTime = (flags & this.FORCE_SINGLELINE) && Date.now(); if (action) - action.call(this, data, highlightGroup, single); + action.call(this, data, highlightGroup, single()); }, _lastEchoTime: 0,