1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-30 04:22:28 +01:00

whitespace fix

This commit is contained in:
Doug Kearns
2008-12-19 19:12:55 +11:00
committed by Kris Maglione
parent 4fc2a56ddc
commit 83dc3857e9

View File

@@ -242,8 +242,8 @@ function AutoCommands() //{{{
liberator.echomsg("Executing " + event + " Auto commands for \"*\"", 8);
let lastPattern = null;
let url = args.url || "";
for (let [,autoCmd] in Iterator(autoCmds))
{
if (autoCmd.pattern.test(url))
@@ -252,22 +252,24 @@ function AutoCommands() //{{{
liberator.echomsg("Executing " + event + " Auto commands for \"" + autoCmd.pattern.source + "\"", 8);
lastPattern = autoCmd.pattern;
liberator.echomsg("autocommand " + autoCmd.command, 9);
if (typeof autoCmd.command == "function")
{
try
{
autoCmd.command.call(autoCmd, args);
}
catch(e)
catch (e)
{
liberator.reportError(e);
liberator.echoerr(e);
}
}
else
{
liberator.execute(commands.replaceTokens(autoCmd.command, args));
}
}
}
}