summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/content/events.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/content/events.js b/common/content/events.js
index fe689949..c4eebe49 100644
--- a/common/content/events.js
+++ b/common/content/events.js
@@ -1248,7 +1248,7 @@ var Events = Module("events", {
// macros
mappings.add([modes.NORMAL, modes.TEXT_AREA, modes.PLAYER].filter(util.identity),
["q"], "Record a key sequence into a macro",
- function (arg) {
+ function ({ arg }) {
events._macroKeys.pop();
events[modes.recording ? "finishRecording" : "startRecording"](arg);
},