diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2022-07-20 13:16:35 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2022-07-20 13:16:35 +0200 |
commit | b7441bd7a30e1fdee837fad9923d372b4b283374 (patch) | |
tree | 1a27579f0d8bfeed77a2377f9245d6b6d6553238 /src/plugins/python/weechat-python-api.c | |
parent | 62e68f965f7bce87eb0bf61bb134de5a3d3b7507 (diff) | |
download | weechat-b7441bd7a30e1fdee837fad9923d372b4b283374.zip |
api: add arguments "index_start" and "index_end" in function string_rebuild_split_string
Diffstat (limited to 'src/plugins/python/weechat-python-api.c')
-rw-r--r-- | src/plugins/python/weechat-python-api.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/python/weechat-python-api.c b/src/plugins/python/weechat-python-api.c index dbbe6d1e0..3bacf63f7 100644 --- a/src/plugins/python/weechat-python-api.c +++ b/src/plugins/python/weechat-python-api.c @@ -2642,7 +2642,7 @@ weechat_python_api_hook_print_cb (const void *pointer, void *data, func_argv[0] = (ptr_data) ? (char *)ptr_data : empty_arg; func_argv[1] = (char *)API_PTR2STR(buffer); func_argv[2] = timebuffer; - func_argv[3] = weechat_string_rebuild_split_string (tags, ","); + func_argv[3] = weechat_string_rebuild_split_string (tags, ",", 0, -1); if (!func_argv[3]) func_argv[3] = strdup (""); func_argv[4] = &displayed; |