util.termcolours: Validate color codes, fixes traceback
authorKim Alvefur <zash@zash.se>
Sun, 28 Feb 2016 14:03:01 +0000 (15:03 +0100)
committerKim Alvefur <zash@zash.se>
Sun, 28 Feb 2016 14:03:01 +0000 (15:03 +0100)
util/termcolours.lua

index a0fee7ce56cc1090bd7a9d1c9818a4c5baed3813..dcdc994d0e98335f513de7b1abd8e22f003b95c0 100644 (file)
@@ -15,6 +15,9 @@ local tonumber = tonumber;
 local ipairs = ipairs;
 local io_write = io.write;
 local m_floor = math.floor;
+local type = type;
+local setmetatable = setmetatable;
+local pairs = pairs;
 
 local windows;
 if os.getenv("WINDIR") then
@@ -76,8 +79,10 @@ local function hex2rgb(hex)
 end
 
 setmetatable(stylemap, { __index = function(_, style)
-       local g = style:sub(7) == " background" and "48;5;" or "38;5;";
-       return g .. color(hex2rgb(style));
+       if type(style) == "string" and style:find("%x%x%x%x%x%x") == 1 then
+               local g = style:sub(7) == " background" and "48;5;" or "38;5;";
+               return g .. color(hex2rgb(style));
+       end
 end } );
 
 local csscolors = {