1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-24 03:52:26 +01:00

Whitespace fixes.

--HG--
extra : rebase_source : 3717d85606cea3b4bab637300a06c54d0af0d8c6
This commit is contained in:
Doug Kearns
2009-11-10 04:54:15 +11:00
parent f09f6120e7
commit bc101175a1
2 changed files with 14 additions and 13 deletions

View File

@@ -558,15 +558,16 @@ const Options = Module("options", {
return (this._optionHash[name].scope & scope) && this._optionHash[name]; return (this._optionHash[name].scope & scope) && this._optionHash[name];
for (let opt in Iterator(options)) { for (let opt in Iterator(options)) {
try { try {
if (opt.hasName(name)) if (opt.hasName(name))
return (opt.scope & scope) && opt; return (opt.scope & scope) && opt;
}catch(e) { }
catch(e) {
liberator.dump(options.__iterator__); liberator.dump(options.__iterator__);
liberator.dump(opt); liberator.dump(opt);
liberator.reportError(e); liberator.reportError(e);
throw e throw e;
} }
} }
return null; return null;