From 08058d0e4db7e4b175de28b24f235c96eec6a2fa Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Sat, 18 Dec 2010 16:14:42 -0500 Subject: [PATCH] Fix bug in last commit. --- common/content/commandline.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/commandline.js b/common/content/commandline.js index b5bcb3f9..454ed83d 100644 --- a/common/content/commandline.js +++ b/common/content/commandline.js @@ -1087,7 +1087,7 @@ const CommandLine = Module("commandline", { // unmapped key default: - if (!options["more"] || !atEnd(-1)) + if (!options["more"] || atEnd(1)) passEvent = true; else showMoreHelpPrompt = true;