1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-04-21 02:31:39 +02:00

whitespace/formatting fixes

This commit is contained in:
Doug Kearns
2008-11-28 13:01:20 +00:00
parent d25867e7b5
commit 5a3a35ea26
10 changed files with 30 additions and 26 deletions
+4 -2
View File
@@ -857,10 +857,12 @@ function Completion() //{{{
let filter = key + (string || "");
for (let [,obj] in Iterator(objects))
{
try {
try
{
this.context.fork(obj[1], top[OFFSET], this, fill,
obj[0], obj[1], compl, compl != orig, filter, last, key.length);
} catch(e) { liberator.reportError(e) }
}
catch (e) { liberator.reportError(e) }
}
if (orig)
return;
+4 -2
View File
@@ -395,9 +395,11 @@ let (array = util.Array)
}
const styles = storage.newObject("styles", Styles, false);
try {
try
{
const highlight = storage.newObject("highlight", Highlights, false);
} catch(e) { liberator.reportError(e) }
}
catch (e) { liberator.reportError(e) }
liberator.registerObserver("load_commands", function ()
{