From 8947213491b56c19058216c32311c4cbaf49f90d Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Thu, 19 Jun 2008 18:45:46 +0200 Subject: [PATCH] awful: fix completion declaration Signed-off-by: Julien Danjou --- lib/awful.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/awful.lua b/lib/awful.lua index c675e6610..85d91cd0e 100644 --- a/lib/awful.lua +++ b/lib/awful.lua @@ -41,7 +41,7 @@ P.myhooks = {} P.menu = {} P.screen = {} P.layout = {} -P.menu.completion = {} +P.completion = {} P.client = {} P.tag = {} @@ -460,7 +460,7 @@ function P.eval(s) return assert(loadstring("return " .. s))() end -function P.menu.completion.bash(command, cur_pos, ncomp) +function P.completion.bash(command, cur_pos, ncomp) local wstart = 1 local wend = 1 local words = {}