diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-07-08 23:59:51 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-07-08 23:59:51 +0100 |
commit | 98ce25306381896a2502e833f1e218d7c599cc4e (patch) | |
tree | bce847ba30c61812777b9ec71e470465992884d8 /plugins | |
parent | b4da24a9cb42c011e1fb3f2dd54d160c00d81ff5 (diff) | |
download | prosody-98ce25306381896a2502e833f1e218d7c599cc4e.tar.gz prosody-98ce25306381896a2502e833f1e218d7c599cc4e.zip |
mod_component: Local imports for some functions, including xpcall
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_component.lua | 1 |
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"; |