Diff

util/termcolours.lua @ 7206:1c005878db55

util.termcolours: Rename loop variable [luacheck]
author Kim Alvefur <zash@zash.se>
date Sun, 28 Feb 2016 15:03:16 +0100
parent 7205:a6c4530c1bc0
child 8368:3629639d5fa9
line wrap: on
line diff
--- a/util/termcolours.lua	Sun Feb 28 15:03:01 2016 +0100
+++ b/util/termcolours.lua	Sun Feb 28 15:03:16 2016 +0100
@@ -91,10 +91,10 @@
 	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(...)