From 3b5f2fc07f043f49faab05ca1fe3126343977cdc Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Sat, 5 Feb 2011 03:06:54 -0500 Subject: [PATCH] Fix problem with last commit. --HG-- branch : groups --- common/content/dactyl.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/content/dactyl.js b/common/content/dactyl.js index 00d0452d..a9ea5907 100644 --- a/common/content/dactyl.js +++ b/common/content/dactyl.js @@ -407,8 +407,8 @@ var Dactyl = Module("dactyl", XPCOM(Ci.nsISupportsWeakReference, ModuleBase), { this.loadScript("resource://dactyl-content/eval.js", context); if (context[EVAL_ERROR]) { try { - context[EVAL_ERROR].fileName = context.file; - context[EVAL_ERROR].lineNumber += context.line; + context[EVAL_ERROR].fileName = info.file; + context[EVAL_ERROR].lineNumber += info.line; } catch (e) {} throw context[EVAL_ERROR];