From 6294f599e4eb52016ac9b7120926559a791f1ef0 Mon Sep 17 00:00:00 2001 From: Martin Stubenschrott Date: Fri, 9 Nov 2007 00:43:08 +0000 Subject: [PATCH] removed useless 3rd paramter from setTimeout --- content/hints.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/hints.js b/content/hints.js index df1d3557..387fd06b 100644 --- a/content/hints.js +++ b/content/hints.js @@ -642,7 +642,7 @@ outer: { var timeout = vimperator.options["hinttimeout"]; if (timeout > 0) - activeTimeout = setTimeout(function() { processHints(true); }, timeout, true); + activeTimeout = setTimeout(function() { processHints(true); }, timeout); return false; }