aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2013-07-08 23:59:51 +0100
committerMatthew Wild <mwild1@gmail.com>2013-07-08 23:59:51 +0100
commita8be0a4bbea2985224bd40b077da669373233dfd (patch)
treebce847ba30c61812777b9ec71e470465992884d8
parenta4338c074419d2803e870c897e01d7acce439e06 (diff)
downloadprosody-a8be0a4bbea2985224bd40b077da669373233dfd.tar.gz
prosody-a8be0a4bbea2985224bd40b077da669373233dfd.zip
mod_component: Local imports for some functions, including xpcall
-rw-r--r--plugins/mod_component.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/mod_component.lua b/plugins/mod_component.lua
index 2fde57ee..a5767c9a 100644
--- a/plugins/mod_component.lua
+++ b/plugins/mod_component.lua
@@ -9,6 +9,7 @@
module:set_global();
local t_concat = table.concat;
+local xpcall, tostring, type = xpcall, tostring, type;
local traceback = debug.traceback;
local logger = require "util.logger";