1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-29 01:15:45 +01:00

whitespace fixes and revert some overly aggressive use of expression closures

This commit is contained in:
Doug Kearns
2008-10-04 10:18:53 +00:00
parent 156fa5d56f
commit 6ef73cf313
16 changed files with 84 additions and 71 deletions

View File

@@ -82,7 +82,10 @@ liberator.Addressbook = function () //{{{
{
to = gDBView.hdrForFirstSelectedMessage.mime2DecodedAuthor;
}
catch (e) { liberator.beep(); }
catch (e)
{
liberator.beep();
}
if (!to)
return;
@@ -134,7 +137,7 @@ liberator.Addressbook = function () //{{{
liberator.commands.add(["contacts", "addr[essbook]"],
"List or open multiple addresses",
function (args, special) liberator.addressbook.list(args, special),
function (args, special) { liberator.addressbook.list(args, special); },
{ bangAllowed: true });
/////////////////////////////////////////////////////////////////////////////}}}