diff options
author | Gerardo Marset <gammer1994@gmail.com> | 2013-02-25 20:28:28 -0200 |
---|---|---|
committer | Gerardo Marset <gammer1994@gmail.com> | 2013-02-25 20:28:28 -0200 |
commit | 56893e9dcd1eeebffb42b227a2151e18d49bc370 (patch) | |
tree | db1e6c023b75b19bb8d761c3d8df576cd6b4d5cd /etc/dispatch.lua | |
parent | d548a78e5516bcc85d44f1d419cf53c71d6dcd79 (diff) | |
download | luasocket-56893e9dcd1eeebffb42b227a2151e18d49bc370.tar.gz luasocket-56893e9dcd1eeebffb42b227a2151e18d49bc370.tar.bz2 luasocket-56893e9dcd1eeebffb42b227a2151e18d49bc370.zip |
Use the length operator (#) instead of table.getn.
table.getn was deprecated in Lua 5.1 in favor of #, the length operator.
See: http://www.lua.org/manual/5.1/manual.html#7.2
Diffstat (limited to 'etc/dispatch.lua')
-rw-r--r-- | etc/dispatch.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/dispatch.lua b/etc/dispatch.lua index cc8cb23..31a1290 100644 --- a/etc/dispatch.lua +++ b/etc/dispatch.lua | |||
@@ -76,7 +76,7 @@ local function newset() | |||
76 | insert = function(set, value) | 76 | insert = function(set, value) |
77 | if not reverse[value] then | 77 | if not reverse[value] then |
78 | table.insert(set, value) | 78 | table.insert(set, value) |
79 | reverse[value] = table.getn(set) | 79 | reverse[value] = #set |
80 | end | 80 | end |
81 | end, | 81 | end, |
82 | remove = function(set, value) | 82 | remove = function(set, value) |