From 47f753d72cc6a040b911f052ff21ed8d1d9e2b19 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Sat, 1 Nov 2008 02:55:21 +0000 Subject: [PATCH] rename local function gotoHistoryItem to loadHistoryItem --- content/ui.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/ui.js b/content/ui.js index 6241fbec..0d498ee4 100644 --- a/content/ui.js +++ b/content/ui.js @@ -764,7 +764,7 @@ function CommandLine() //{{{ // user pressed UP or DOWN arrow to cycle history completion else if (/^(|||||)$/.test(key)) { - function gotoHistoryItem(index) + function loadHistoryItem(index) { setCommand(inputHistory.get(historyIndex)); liberator.triggerCallback("change", currentExtendedMode, commandline.getCommand()); @@ -818,13 +818,13 @@ function CommandLine() //{{{ { if (inputHistory.get(historyIndex).indexOf(historyStart) == 0) { - gotoHistoryItem(historyIndex); + loadHistoryItem(historyIndex); break; } } else { - gotoHistoryItem(historyIndex); + loadHistoryItem(historyIndex); break; } }