1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-24 09:42:28 +01:00

Fix serializing mappings in :mkp.

This commit is contained in:
Kris Maglione
2011-01-20 02:25:42 -05:00
parent 0ea2633593
commit 4a77c9d34d

View File

@@ -553,7 +553,7 @@ var Mappings = Module("mappings", {
function userMappings() {
let seen = {};
for (let stack in values(mappings.userHive.stacks))
for (let map in values(stack))
for (let map in array.iterValues(stack))
if (!set.add(seen, map.id))
yield map;
}