1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-04 20:44:11 +01:00

Fix :lc/help index generation on F36.

This commit is contained in:
Kris Maglione
2011-02-23 22:04:48 -05:00
parent d9fe3a736e
commit 3b269d5c4d

View File

@@ -679,7 +679,7 @@ var Commands = Module("commands", {
COUNT_ALL: -2, // :%...
/** @property {Iterator(Command)} @private */
iterator: function iterator() iter.apply(null, this.hives)
iterator: function iterator() iter.apply(null, this.hives.array)
.sort(function (a, b) a.serialGroup - b.serialGroup || a.name > b.name)
.iterValues(),