1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-21 22:05:44 +01:00

Remove more unused vars.

This commit is contained in:
Doug Kearns
2015-04-25 23:57:57 +10:00
parent cd48d1b90b
commit 52993ec781
22 changed files with 29 additions and 50 deletions

View File

@@ -769,7 +769,7 @@ var Contexts = Module("contexts", {
});
commands.add(["elsei[f]", "elif"],
"Execute commands until the next :elseif, :else, or :endif only if the argument returns true",
function (args) {},
function () {},
{
always: function (args) {
checkStack("if");
@@ -781,7 +781,7 @@ var Contexts = Module("contexts", {
});
commands.add(["el[se]"],
"Execute commands until the next :endif only if the previous conditionals were not executed",
function (args) {},
function () {},
{
always: function (args) {
checkStack("if");
@@ -792,7 +792,7 @@ var Contexts = Module("contexts", {
});
commands.add(["en[dif]", "fi"],
"End a string of :if/:elseif/:else conditionals",
function (args) {},
function () {},
{
always: function (args) { args.context.noExecute = pop("if"); },
argCount: "0"