summaryrefslogtreecommitdiff
path: root/src/plugins/scripts/lua/weechat-lua-api.c
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2011-03-11 18:39:37 +0100
committerSebastien Helleu <flashcode@flashtux.org>2011-03-11 18:39:37 +0100
commitc71e2cad382544e01855ad668a55acf871c484c1 (patch)
tree909de9e11417ed34d6e7dcac07b2a74e91b9a3a0 /src/plugins/scripts/lua/weechat-lua-api.c
parentadae98e94d58ebc29dd02d9404dfc7593716baa8 (diff)
downloadweechat-c71e2cad382544e01855ad668a55acf871c484c1.zip
Add function "buffer_match_list" in plugin API
Diffstat (limited to 'src/plugins/scripts/lua/weechat-lua-api.c')
-rw-r--r--src/plugins/scripts/lua/weechat-lua-api.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/plugins/scripts/lua/weechat-lua-api.c b/src/plugins/scripts/lua/weechat-lua-api.c
index ba88f24db..f0b64af5d 100644
--- a/src/plugins/scripts/lua/weechat-lua-api.c
+++ b/src/plugins/scripts/lua/weechat-lua-api.c
@@ -5244,6 +5244,42 @@ weechat_lua_api_buffer_string_replace_local_var (lua_State *L)
}
/*
+ * 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 },