From badbf8b8c958cb14523cffeb5830d67f1909ae05 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Fri, 24 Aug 2007 11:13:28 +0000 Subject: [PATCH] remove unnecessary temp variable --- chrome/content/vimperator/ui.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/chrome/content/vimperator/ui.js b/chrome/content/vimperator/ui.js index 190eaca9..2f87d4be 100644 --- a/chrome/content/vimperator/ui.js +++ b/chrome/content/vimperator/ui.js @@ -89,8 +89,7 @@ function CommandLine() //{{{ var multiline_callback = null; // load the commandline history - var hist = Options.getPref("commandline_history", ""); - history = hist.split("\n"); + history = Options.getPref("commandline_history", "").split("\n"); // TODO: these styles should be moved to the .css file function setNormalStyle()