diff --git a/common/modules/commands.jsm b/common/modules/commands.jsm index 6510c111..939f02db 100644 --- a/common/modules/commands.jsm +++ b/common/modules/commands.jsm @@ -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(),