aboutsummaryrefslogtreecommitdiffstats
path: root/util/termcolours.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2016-02-28 15:03:16 +0100
committerKim Alvefur <zash@zash.se>2016-02-28 15:03:16 +0100
commit29cb6ece54e331e6bed5a042524091f75b43846a (patch)
tree10b74b079bd0fb6d735155e0f1e68bc4bb9d29b0 /util/termcolours.lua
parent341876f588178a69fe62a92858b946f35c4308e0 (diff)
downloadprosody-29cb6ece54e331e6bed5a042524091f75b43846a.tar.gz
prosody-29cb6ece54e331e6bed5a042524091f75b43846a.zip
util.termcolours: Rename loop variable [luacheck]
Diffstat (limited to 'util/termcolours.lua')
-rw-r--r--util/termcolours.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/util/termcolours.lua b/util/termcolours.lua
index dcdc994d..53633b45 100644
--- a/util/termcolours.lua
+++ b/util/termcolours.lua
@@ -91,10 +91,10 @@ local csscolors = {
aqua = "00ffff"; olive = "808000"; black = "000000"; navy = "000080";
teal = "008080"; silver = "c0c0c0"; maroon = "800000"; gray = "808080";
}
-for color, rgb in pairs(csscolors) do
- stylemap[color] = stylemap[color] or stylemap[rgb];
- color, rgb = color .. " background", rgb .. " background"
- stylemap[color] = stylemap[color] or stylemap[rgb];
+for colorname, rgb in pairs(csscolors) do
+ stylemap[colorname] = stylemap[colorname] or stylemap[rgb];
+ colorname, rgb = colorname .. " background", rgb .. " background"
+ stylemap[colorname] = stylemap[colorname] or stylemap[rgb];
end
local function getstyle(...)