util.termcolours: Use explicit number formatting instead of coercion on concatenation
authorKim Alvefur <zash@zash.se>
Wed, 20 Nov 2019 19:22:55 +0100
changeset 10427 317bcc4f25f5
parent 10426 cb6c0a5f9367
child 10428 e7d3fa49495f
util.termcolours: Use explicit number formatting instead of coercion on concatenation
util/termcolours.lua
--- 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 } );