1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-16 06:45:45 +01:00

Fix brokenness.

This commit is contained in:
Kris Maglione
2015-02-25 12:10:35 -08:00
parent a8b1b278e2
commit e819e7616d
4 changed files with 11 additions and 5 deletions

View File

@@ -754,7 +754,7 @@ var Option = Class("Option", {
acceptable = completions.call(this);
if (isArray(acceptable))
acceptable = new RealSet(acceptable.map(([k]) => k));
acceptable = new RealSet(acceptable.map((v) => v[0]));
else
acceptable = new RealSet(this.parseKey(k)
for (k of Object.keys(acceptable)));