awful.key: fix typo

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2009-04-28 19:55:26 +02:00
parent 66767605ee
commit 75203f0f94
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ function match(key, pressed_mod, pressed_key)
local mod = key.modifiers local mod = key.modifiers
local nbmod = 0 local nbmod = 0
for _, m in ipairs(pressed_mod) do for _, m in ipairs(pressed_mod) do
if awful.util.table.hasitem(mod, m) then if util.table.hasitem(mod, m) then
nbmod = nbmod + 1 nbmod = nbmod + 1
end end
end end