From 74da48b05dcfb3841bbf8c13e2f8cc51defd05b7 Mon Sep 17 00:00:00 2001 From: Rob Hoelz Date: Thu, 21 Feb 2013 21:13:03 +0100 Subject: Don't hide the metatable for colors --- term/colors.lua | 2 -- 1 file changed, 2 deletions(-) (limited to 'term') diff --git a/term/colors.lua b/term/colors.lua index 63d752b..76f8b2e 100644 --- a/term/colors.lua +++ b/term/colors.lua @@ -39,8 +39,6 @@ function colormt:__call(s) return self .. s .. colors.reset end -colormt.__metatable = {} - local function makecolor(value) return setmetatable({ value = schar(27) .. '[' .. tostring(value) .. 'm' }, colormt) end -- cgit v1.2.3-55-g6feb