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

Remove a troublesome and unnecessary memoize statement.

This commit is contained in:
Kris Maglione
2010-10-04 23:54:57 -04:00
parent c747734f1e
commit 5946f6a757
3 changed files with 3 additions and 4 deletions

View File

@@ -536,7 +536,7 @@ const JavaScript = Module("javascript", {
args.push(key + string);
let compl = function (context, obj) {
let res = completer.call(this, context, funcName, obj, args);
let res = completer.call(self, context, funcName, obj, args);
if (res)
context.completions = res;
};