aboutsummaryrefslogtreecommitdiff
path: root/contrib/pop.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/pop.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/pop.lua')
-rw-r--r--contrib/pop.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/contrib/pop.lua b/contrib/pop.lua
index 78e0bcb..0ea041b 100644
--- a/contrib/pop.lua
+++ b/contrib/pop.lua
@@ -19,7 +19,8 @@ end)
-- POP: provides the count of new messages in a POP3 mailbox
-module("vicious.contrib.pop")
+-- vicious.contrib.pop
+local pop = {}
-- {{{ POP3 count widget type
@@ -51,4 +52,4 @@ local function worker(format, warg)
end
-- }}}
-setmetatable(_M, { __call = function(_, ...) return worker(...) end })
+return setmetatable(pop, { __call = function(_, ...) return worker(...) end })