awful.util.join: Stop using arg

Implementing vararg functions via arg is deprecated in lua. This kind of thing
should instead be done via "...".

Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
Uli Schlachter 2010-10-11 16:55:56 +02:00
parent dc6a2c6b0d
commit bb52505bb8

View file

@ -237,9 +237,9 @@ end
-- @return A new table containing all keys from the arguments.
function table.join(...)
local ret = {}
for i = 1, arg.n do
if arg[i] then
for k, v in pairs(arg[i]) do
for i, t in ipairs({...}) do
if t then
for k, v in pairs(t) do
if type(k) == "number" then
rtable.insert(ret, v)
else