aboutsummaryrefslogtreecommitdiff
path: root/contrib/netcfg.lua
diff options
context:
space:
mode:
authorArvydas Sidorenko <asido4@gmail.com>2012-06-15 20:48:17 +0200
committerAdrian C. (anrxc) <anrxc@sysphere.org>2012-06-18 01:27:53 +0200
commit8e35a983bf24f6f90df4630b2b55409f0ca1d213 (patch)
treebec2a7d44b7994c299e82c2348740a11ffeb71a6 /contrib/netcfg.lua
parent41cc2c0e27e6a0860d21754ed9d13f6cd61254ac (diff)
downloadvicious-legacy-8e35a983bf24f6f90df4630b2b55409f0ca1d213.tar.xz
Ported vicious.contrib to lua 5.2
Signed-off-by: Arvydas Sidorenko <asido4@gmail.com> Signed-off-by: Adrian C. (anrxc) <anrxc@sysphere.org>
Diffstat (limited to 'contrib/netcfg.lua')
-rw-r--r--contrib/netcfg.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/contrib/netcfg.lua b/contrib/netcfg.lua
index fc22e8d..f2c0d52 100644
--- a/contrib/netcfg.lua
+++ b/contrib/netcfg.lua
@@ -11,7 +11,8 @@ local table = { insert = table.insert }
-- Netcfg: provides active netcfg network profiles
-module("vicious.contrib.netcfg")
+-- vicious.contrib.netcfg
+local netcfg = {}
-- {{{ Netcfg widget type
@@ -31,4 +32,4 @@ local function worker(format)
end
-- }}}
-setmetatable(_M, { __call = function(_, ...) return worker(...) end })
+return setmetatable(netcfg, { __call = function(_, ...) return worker(...) end })