awful.menu: Add missing "local" declaration
Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
parent
77e92e17a1
commit
2936f63d67
|
@ -458,7 +458,7 @@ end
|
||||||
-- @param _menu Menu table, see new() function for more informations
|
-- @param _menu Menu table, see new() function for more informations
|
||||||
-- @return The menu.
|
-- @return The menu.
|
||||||
function menu:clients(args) -- FIXME crude api
|
function menu:clients(args) -- FIXME crude api
|
||||||
_menu = self or {}
|
local _menu = self or {}
|
||||||
local cls = capi.client.get()
|
local cls = capi.client.get()
|
||||||
local cls_t = {}
|
local cls_t = {}
|
||||||
for k, c in pairs(cls) do
|
for k, c in pairs(cls) do
|
||||||
|
|
Loading…
Reference in New Issue