From 162d9122b22e31f3570d04533ce58e12b63c5bec Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Mon, 24 Jan 2011 14:19:55 +1100 Subject: [PATCH] Fix mappings.iterate. --- common/content/mappings.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/mappings.js b/common/content/mappings.js index 5be880dd..50cea553 100644 --- a/common/content/mappings.js +++ b/common/content/mappings.js @@ -304,7 +304,7 @@ var Mappings = Module("mappings", { iterate: function (mode) { let seen = {}; for (let hive in this.hives.iterValues()) - for (let map in hive.getStack(mode).iterValues()) + for (let map in array(hive.getStack(mode)).iterValues()) if (!set.add(seen, map.name)) yield map; },