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:
@@ -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 });
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////}}}
|
||||
|
||||
Reference in New Issue
Block a user