# HG changeset patch # User Matthew Wild # Date 1364973295 -3600 # Node ID 0bf5e90be086eacbbc4ae616c6e054b02e320907 # Parent a5fcda77c6b1c196b218bc3c1b06beeb9e022a5d configmanager: Some cleanup, remove unused variables and imports diff -r a5fcda77c6b1 -r 0bf5e90be086 core/configmanager.lua --- a/core/configmanager.lua Mon Apr 01 23:44:28 2013 +0000 +++ b/core/configmanager.lua Wed Apr 03 08:14:55 2013 +0100 @@ -7,8 +7,8 @@ -- local _G = _G; -local setmetatable, loadfile, pcall, rawget, rawset, io, error, dofile, type, pairs, table = - setmetatable, loadfile, pcall, rawget, rawset, io, error, dofile, type, pairs, table; +local setmetatable, rawget, rawset, io, error, dofile, type, pairs, table = + setmetatable, rawget, rawset, io, error, dofile, type, pairs, table; local format, math_max = string.format, math.max; local fire_event = prosody and prosody.events.fire_event or function () end; @@ -68,7 +68,6 @@ -- Helper function to resolve relative paths (needed by config) do - local rel_path_start = ".."..path_sep; function resolve_relative_path(parent_path, path) if path then -- Some normalization @@ -152,7 +151,7 @@ -- Built-in Lua parser do local pcall, setmetatable = _G.pcall, _G.setmetatable; - local rawget, tostring = _G.rawget, _G.tostring; + local rawget = _G.rawget; parsers.lua = {}; function parsers.lua.load(data, config_file, config) local env; @@ -213,7 +212,7 @@ end env.component = env.Component; - function env.Include(file, wildcard) + function env.Include(file) if file:match("[*?]") then local path_pos, glob = file:match("()([^"..path_sep.."]+)$"); local path = file:sub(1, math_max(path_pos-2,0));