Software /
code /
prosody
Comparison
core/configmanager.lua @ 8158:b4cbd65ee4c5
configmanager: Remove unused local [luacheck]
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 28 May 2017 23:40:26 +0200 |
parent | 8153:c22d5680ca68 |
child | 8555:4f0f5b49bb03 |
comparison
equal
deleted
inserted
replaced
8157:4947e84f2e5b | 8158:b4cbd65ee4c5 |
---|---|
5 -- This project is MIT/X11 licensed. Please see the | 5 -- This project is MIT/X11 licensed. Please see the |
6 -- COPYING file in the source package for more information. | 6 -- COPYING file in the source package for more information. |
7 -- | 7 -- |
8 | 8 |
9 local _G = _G; | 9 local _G = _G; |
10 local setmetatable, rawget, rawset, io, error, dofile, type, pairs, table = | 10 local setmetatable, rawget, rawset, io, error, dofile, type, pairs = |
11 setmetatable, rawget, rawset, io, error, dofile, type, pairs, table; | 11 setmetatable, rawget, rawset, io, error, dofile, type, pairs; |
12 local format, math_max = string.format, math.max; | 12 local format, math_max = string.format, math.max; |
13 | 13 |
14 local fire_event = prosody and prosody.events.fire_event or function () end; | 14 local fire_event = prosody and prosody.events.fire_event or function () end; |
15 | 15 |
16 local envload = require"util.envload".envload; | 16 local envload = require"util.envload".envload; |