1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 08:07:59 +01:00

Change multiline beep guard clauses to single line formatting.

This commit is contained in:
Doug Kearns
2009-06-02 19:41:22 +10:00
parent e762b6f9d4
commit 09d8af9044
8 changed files with 12 additions and 46 deletions

View File

@@ -1681,10 +1681,7 @@ function Marks() //{{{
function (arg)
{
if (/[^a-zA-Z]/.test(arg))
{
liberator.beep();
return;
}
return void liberator.beep();
marks.add(arg);
},

View File

@@ -546,10 +546,7 @@ function Editor() //{{{
let text = getEditor().value;
let pos = getEditor().selectionStart;
if (pos >= text.length)
{
liberator.beep();
return;
}
return void liberator.beep();
let chr = text[pos];
getEditor().value = text.substring(0, pos) +
(chr == chr.toLocaleLowerCase() ? chr.toLocaleUpperCase() : chr.toLocaleLowerCase()) +

View File

@@ -913,10 +913,7 @@ function Hints() //{{{
{
hintMode = hintModes[minor];
if (!hintMode)
{
liberator.beep();
return;
}
return void liberator.beep();
commandline.input(hintMode.prompt + ": ", null, { onChange: onInput });
modes.extended = modes.HINTS;
@@ -1013,8 +1010,7 @@ function Hints() //{{{
{
usedTabKey = false;
hintNumber = 0;
liberator.beep();
return;
return void liberator.beep();
}
break;
@@ -1053,10 +1049,7 @@ function Hints() //{{{
showActiveHint(hintNumber, oldHintNumber || 1);
if (hintNumber == 0 || hintNumber > validHints.length)
{
liberator.beep();
return;
}
return void liberator.beep();
// if we write a numeric part like 3, but we have 45 hints, only follow
// the hint after a timeout, as the user might have wanted to follow link 34

View File

@@ -961,10 +961,7 @@ function Tabs() //{{{
let index = indexFromSpec(spec, wrap);
// FIXME:
if (index == -1)
{
liberator.beep();
return;
}
return void liberator.beep();
getBrowser().mTabContainer.selectedIndex = index;
},

View File

@@ -915,10 +915,7 @@ function QuickMarks() //{{{
function (arg)
{
if (/[^a-zA-Z0-9]/.test(arg))
{
liberator.beep();
return;
}
return void liberator.beep();
quickmarks.add(arg, buffer.URL);
},

View File

@@ -147,10 +147,7 @@ const config = { //{{{
{
let matches = buffer.URL.match(/(.*?)(\d+)(\D*)$/);
if (!matches)
{
liberator.beep();
return;
}
return void liberator.beep();
let [, pre, number, post] = matches;
let newNumber = parseInt(number, 10) + count;
@@ -305,10 +302,7 @@ const config = { //{{{
{
let uri = content.document.location;
if (/(about|mailto):/.test(uri.protocol)) // exclude these special protocols for now
{
liberator.beep();
return;
}
return void liberator.beep();
liberator.open(uri.protocol + "//" + (uri.host || "") + "/");
});

View File

@@ -967,10 +967,7 @@ function QuickMarks() //{{{
function (arg)
{
if (/[^a-zA-Z0-9]/.test(arg))
{
liberator.beep();
return;
}
return void liberator.beep();
quickmarks.add(arg, buffer.URL);
},

View File

@@ -201,10 +201,7 @@ const config = { //{{{
{
let matches = buffer.URL.match(/(.*?)(\d+)(\D*)$/);
if (!matches)
{
liberator.beep();
return;
}
return void liberator.beep();
let [, pre, number, post] = matches;
let newNumber = parseInt(number, 10) + count;
@@ -407,10 +404,7 @@ const config = { //{{{
{
let uri = content.document.location;
if (/(about|mailto):/.test(uri.protocol)) // exclude these special protocols for now
{
liberator.beep();
return;
}
return void liberator.beep();
liberator.open(uri.protocol + "//" + (uri.host || "") + "/");
});