From 3b269d5c4d809db0e02add1a7feeb23bacdb877b Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Wed, 23 Feb 2011 22:04:48 -0500 Subject: [PATCH] Fix :lc/help index generation on F36. --- common/modules/commands.jsm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(),