From 5d47f7607b2a1b89a68b0228ea6662e2ce5b1817 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0t=C4=9Bp=C3=A1n=20N=C4=9Bmec?= Date: Tue, 24 Jul 2012 22:05:13 +0200 Subject: [PATCH] Fix the deprecated buffer.getCurrentWord() usage leftover. --- common/content/mow.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/mow.js b/common/content/mow.js index 770929dd..afebff6b 100644 --- a/common/content/mow.js +++ b/common/content/mow.js @@ -400,7 +400,7 @@ var MOW = Module("mow", { // copy text to clipboard bind([""], "Yank selection to clipboard", - function () { dactyl.clipboardWrite(buffer.getCurrentWord(mow.window)); }); + function () { dactyl.clipboardWrite(Buffer.currentWord(mow.window)); }); // close the window bind(["q"], "Close the output window",