util.datamanager: Import tostring and type (fix global access)

This commit is contained in:
Kim Alvefur 2016-05-22 14:38:07 +02:00
parent 8d720b7bfb
commit baba98852d

View file

@ -17,7 +17,9 @@ local io_open = io.open;
local os_remove = os.remove;
local os_rename = os.rename;
local tonumber = tonumber;
local tostring = tostring;
local next = next;
local type = type;
local t_insert = table.insert;
local t_concat = table.concat;
local envloadfile = require"util.envload".envloadfile;