1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-25 20:36:38 +02:00

Add function "buffer_match_list" in plugin API

This commit is contained in:
Sebastien Helleu
2011-03-11 18:39:37 +01:00
parent adae98e94d
commit c71e2cad38
14 changed files with 453 additions and 46 deletions
+37
View File
@@ -5243,6 +5243,42 @@ weechat_lua_api_buffer_string_replace_local_var (lua_State *L)
LUA_RETURN_STRING_FREE(result);
}
/*
* weechat_lua_api_buffer_match_list: return 1 if buffer matches list of buffers
*/
static int
weechat_lua_api_buffer_match_list (lua_State *L)
{
const char *buffer, *string;
int n, value;
/* make C compiler happy */
(void) L;
if (!lua_current_script || !lua_current_script->name)
{
WEECHAT_SCRIPT_MSG_NOT_INIT(LUA_CURRENT_SCRIPT_NAME, "buffer_match_list");
LUA_RETURN_INT(0);
}
n = lua_gettop (lua_current_interpreter);
if (n < 2)
{
WEECHAT_SCRIPT_MSG_WRONG_ARGS(LUA_CURRENT_SCRIPT_NAME, "buffer_match_list");
LUA_RETURN_INT(0);
}
buffer = lua_tostring (lua_current_interpreter, -2);
string = lua_tostring (lua_current_interpreter, -1);
value = weechat_buffer_match_list (script_str2ptr (buffer),
string);
LUA_RETURN_INT(value);
}
/*
* weechat_lua_api_current_window: get current window
*/
@@ -7769,6 +7805,7 @@ const struct luaL_reg weechat_lua_api_funcs[] = {
{ "buffer_get_pointer", &weechat_lua_api_buffer_get_pointer },
{ "buffer_set", &weechat_lua_api_buffer_set },
{ "buffer_string_replace_local_var", &weechat_lua_api_buffer_string_replace_local_var },
{ "buffer_match_list", &weechat_lua_api_buffer_match_list },
{ "current_window", &weechat_lua_api_current_window },
{ "window_get_integer", &weechat_lua_api_window_get_integer },
{ "window_get_string", &weechat_lua_api_window_get_string },