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

Fix Minefield a-fucking-gain.

This commit is contained in:
Kris Maglione
2011-02-07 15:50:08 -05:00
parent bb0b6f8bdb
commit c8d54fa5d2
3 changed files with 3 additions and 3 deletions

View File

@@ -98,7 +98,7 @@ var JavaScript = Module("javascript", {
return cache[key];
context[JavaScript.EVAL_TMP] = tmp;
context[JavaScript.EVAL_EXPORT] = function export(obj) cache[key] = obj;
context[JavaScript.EVAL_EXPORT] = function export_(obj) cache[key] = obj;
try {
if (tmp != null) // Temporary hack until bug 609949 is fixed.
this.modules.dactyl.userEval(JavaScript.EVAL_EXPORT + "(" + arg + ")", context, "[Command Line Completion]", 1);