1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 23:27:59 +01:00

Fix problem with last commit.

--HG--
branch : groups
This commit is contained in:
Kris Maglione
2011-02-05 03:06:54 -05:00
parent 9b3ad1c7c6
commit 3b5f2fc07f

View File

@@ -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];