1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-31 20:52:28 +01:00

Whitespace and semicolon fixes.

This commit is contained in:
Doug Kearns
2009-08-10 02:15:23 +10:00
parent a8001baa03
commit 77458e5b8a
16 changed files with 66 additions and 61 deletions

6
muttator/content/mail.js Normal file → Executable file
View File

@@ -251,7 +251,7 @@ function Mail() //{{{
function ()
{
if (gDBView && gDBView.selection.count < 1)
return liberator.beep();
return void liberator.beep();
MsgOpenNewTabForMessage();
});
@@ -558,7 +558,7 @@ function Mail() //{{{
function (arg)
{
if (!GetSelectedMessages())
return liberator.beep();
return void liberator.beep();
switch (arg)
{
@@ -664,7 +664,7 @@ function Mail() //{{{
"Select a folder",
function (args)
{
let count = Math.max(0, args.count - 1)
let count = Math.max(0, args.count - 1);
let arg = args.literalArg || "Inbox";
let folder = mail.getFolders(arg, true, true)[count];