From e43b15ec890042740ae55620711dac57578d818d Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Wed, 5 Nov 2008 12:00:26 +0100 Subject: [PATCH] hooks: fix mouseover compat Signed-off-by: Julien Danjou --- hooks.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hooks.c b/hooks.c index ed711508..64e31f3b 100644 --- a/hooks.c +++ b/hooks.c @@ -96,7 +96,7 @@ luaA_hooks_mouse_enter(lua_State *L) * \lparam A function to call each time a client gets mouse over it. */ static int -luaA_hooks_mouse_over(lua_State *L) +luaA_hooks_mouseover(lua_State *L) { deprecate(L); return luaA_hooks_mouse_enter(L); @@ -201,6 +201,6 @@ const struct luaL_reg awesome_hooks_lib[] = { "tagged", luaA_hooks_tagged }, { "timer", luaA_hooks_timer }, /* deprecated */ - { "mouse_over", luaA_hooks_mouse_over }, + { "mouseover", luaA_hooks_mouseover }, { NULL, NULL } }; -- 2.11.4.GIT