1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-26 12:56:37 +02:00

Add missing pointer to function "string_build_with_exploded" in plugin API

This commit is contained in:
Sebastien Helleu
2008-11-29 23:11:31 +01:00
parent d8fc604eed
commit 003bc0451e
+1
View File
@@ -343,6 +343,7 @@ plugin_load (const char *filename)
new_plugin->string_mask_to_regex = &string_mask_to_regex;
new_plugin->string_explode = &string_explode;
new_plugin->string_free_exploded = &string_free_exploded;
new_plugin->string_build_with_exploded = &string_build_with_exploded;
new_plugin->string_split_command = &string_split_command;
new_plugin->string_free_splitted_command = &string_free_splitted_command;