From abe2c666b6361999bfa079081a1ec288ad7b8bbf Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Wed, 29 Dec 2010 11:18:25 -0500 Subject: [PATCH] Fix unterminated key chains. Closes issue #219. --- common/content/events.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/events.js b/common/content/events.js index bac7c073..608a4a73 100644 --- a/common/content/events.js +++ b/common/content/events.js @@ -1105,7 +1105,7 @@ var Events = Module("events", { let candidates = mappings.getCandidates(this.main, command); if (candidates.length == 0 && !map) { - [map, command] = this.pendingMap || []; + [map] = this.pendingMap || []; this.pendingMap = null; if (map && map.arg) this.pendingArgMap = map;