From a81e3dc27042481b6f401801d8f2c14004d5b879 Mon Sep 17 00:00:00 2001 From: mitchell <70453897+667e-11@users.noreply.github.com> Date: Sun, 23 Sep 2007 14:13:10 -0400 Subject: Replaced l_handle_completion with overloaded l_handle_signal. --- src/lua_interface.c | 7 ------- 1 file changed, 7 deletions(-) (limited to 'src/lua_interface.c') diff --git a/src/lua_interface.c b/src/lua_interface.c index 2029a1a8..221e4120 100644 --- a/src/lua_interface.c +++ b/src/lua_interface.c @@ -386,13 +386,6 @@ bool l_handle_keypress(int keyval, GdkEventKey *event) { return l_call_function(4, 1); } -void l_handle_completion(const char *command) { - if (!l_is_ta_table_function("events", - command ? "show_completions" : "hide_completions")) return; - if (command) lua_pushstring(lua, command); - l_call_function(command ? 1 : 0); -} - #define l_scn_int(i, n) { lua_pushinteger(lua, i); lua_setfield(lua, -2, n); } #define l_scn_str(s, n) { lua_pushstring(lua, s); lua_setfield(lua, -2, n); } -- cgit v1.2.3