util/termcolours.lua
changeset 10427 317bcc4f25f5
parent 8558 4f0f5b49bb03
child 12979 d10957394a3c
--- a/util/termcolours.lua	Tue Nov 19 17:38:38 2019 +0100
+++ b/util/termcolours.lua	Wed Nov 20 19:22:55 2019 +0100
@@ -83,7 +83,7 @@
 setmetatable(stylemap, { __index = function(_, 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));
+		return format("%s%d", g, color(hex2rgb(style)));
 	end
 end } );