From 98e5b79d7bc9fc6d8570eedafcfc974d5a804f77 Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Fri, 11 Feb 2011 04:57:19 -0500 Subject: [PATCH] Fix botched patch. --- common/modules/contexts.jsm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/common/modules/contexts.jsm b/common/modules/contexts.jsm index 183bead1..c8ba8951 100644 --- a/common/modules/contexts.jsm +++ b/common/modules/contexts.jsm @@ -335,7 +335,7 @@ var Contexts = Module("contexts", { }, bindMacro: function (args, default_, params) { - const { dactyl, events } = this.modules; + const { dactyl, events, modules } = this.modules; let process = util.identity; @@ -362,9 +362,9 @@ var Contexts = Module("contexts", { action.macro = util.compileMacro(rhs, true); break; case "-ex": - action = function action() this.modules.commands - .execute(action.macro, makeParams(this, arguments), - false, null, action.context); + action = function action() modules.commands + .execute(action.macro, makeParams(this, arguments), + false, null, action.context); action.macro = util.compileMacro(rhs, true); action.context = this.context && update({}, this.context); break;