mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.termcolours: Rename loop variable [luacheck]
This commit is contained in:
parent
341876f588
commit
29cb6ece54
1 changed files with 4 additions and 4 deletions
|
@ -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(...)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue