From c40238e109f8ed9fe210527f2e3a4287f1ef0dfe Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Wed, 17 Dec 2008 22:17:10 -0500 Subject: [PATCH] Fix keypress handling bug --- common/content/events.js | 1 + 1 file changed, 1 insertion(+) diff --git a/common/content/events.js b/common/content/events.js index 0b66593b..dce30d80 100644 --- a/common/content/events.js +++ b/common/content/events.js @@ -1427,6 +1427,7 @@ function Events() //{{{ // TODO: map.rhs is only defined for user defined commands, should add a "isDefault" property else if (map && !skipMap && (map.rhs || candidates.length == 0)) { + input.pendingMap = null; input.count = parseInt(countStr, 10); if (isNaN(input.count)) input.count = -1;