From 50d1d278c4e64a5d75e57aef98a0b4bd0cf90870 Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Mon, 3 Oct 2011 04:51:03 -0400 Subject: [PATCH] Fix macro appending bug. --- common/content/events.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/content/events.js b/common/content/events.js index 14177fc5..7fde5e12 100644 --- a/common/content/events.js +++ b/common/content/events.js @@ -248,8 +248,8 @@ var Events = Module("events", { if (/[A-Z]/.test(macro)) { // uppercase (append) macro = macro.toLowerCase(); - this._macroKeys = DOM.Event.stringify((this._macros.get(macro) || { keys: "" }).keys, true) - .map(DOM.Event.closure.stringify); + this._macroKeys = DOM.Event.iterKeys((this._macros.get(macro) || { keys: "" }).keys) + .toArray(); } else if (macro) { this._macroKeys = [];