1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-01 13:52:26 +01:00

remove unnecessary temp variable

This commit is contained in:
Doug Kearns
2007-08-24 11:13:28 +00:00
parent 75a8d7d453
commit badbf8b8c9

View File

@@ -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()