summaryrefslogtreecommitdiff
path: root/src/plugins/lua
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2016-03-24 09:17:54 +0100
committerSébastien Helleu <flashcode@flashtux.org>2016-03-24 09:17:54 +0100
commit5244a707cb8bdfc7b19a1505938d5d79b44aef66 (patch)
tree40bd27088fc3e9cb0cd54b0d9298e8b4a9125fac /src/plugins/lua
parent293f758a3aaac724eb5008d67fabf8ac124edb48 (diff)
downloadweechat-5244a707cb8bdfc7b19a1505938d5d79b44aef66.zip
api: rename function unhook_all_plugin to unhook_all
Diffstat (limited to 'src/plugins/lua')
-rw-r--r--src/plugins/lua/weechat-lua-api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/lua/weechat-lua-api.c b/src/plugins/lua/weechat-lua-api.c
index 1900aed0b..893424034 100644
--- a/src/plugins/lua/weechat-lua-api.c
+++ b/src/plugins/lua/weechat-lua-api.c
@@ -3254,7 +3254,7 @@ API_FUNC(unhook_all)
{
API_INIT_FUNC(1, "unhook_all", API_RETURN_ERROR);
- weechat_unhook_all_plugin (lua_current_script->name);
+ weechat_unhook_all (lua_current_script->name);
API_RETURN_OK;
}