aboutsummaryrefslogtreecommitdiffstats
path: root/util/xml.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2015-02-21 10:36:37 +0100
committerKim Alvefur <zash@zash.se>2015-02-21 10:36:37 +0100
commit3015aac8bcb38ed2d00b8f5205bd54d82b96e71a (patch)
treef7609b77dfead0a8d6994597c5799196676080bd /util/xml.lua
parent2b0b78b8b0210906d14f52f70fffefac2a744dba (diff)
downloadprosody-3015aac8bcb38ed2d00b8f5205bd54d82b96e71a.tar.gz
prosody-3015aac8bcb38ed2d00b8f5205bd54d82b96e71a.zip
util.*: Remove use of module() function, make all module functions local and return them in a table at the end
Diffstat (limited to 'util/xml.lua')
-rw-r--r--util/xml.lua7
1 files changed, 4 insertions, 3 deletions
diff --git a/util/xml.lua b/util/xml.lua
index 88ccedde..733d821a 100644
--- a/util/xml.lua
+++ b/util/xml.lua
@@ -2,7 +2,7 @@
local st = require "util.stanza";
local lxp = require "lxp";
-module("xml")
+local _ENV = nil;
local parse_xml = (function()
local ns_prefixes = {
@@ -54,5 +54,6 @@ local parse_xml = (function()
end;
end)();
-parse = parse_xml;
-return _M;
+return {
+ parse = parse_xml;
+};