diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2008-11-29 23:11:31 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2008-11-29 23:11:31 +0100 |
commit | 003bc0451e76720a6740c12720d2302cb4647ade (patch) | |
tree | e49c452275e63344a7bbd1ed75da31a8d2140994 | |
parent | d8fc604eeda8fd1142da59a2cdcb96a8b6273ca6 (diff) | |
download | weechat-003bc0451e76720a6740c12720d2302cb4647ade.zip |
Add missing pointer to function "string_build_with_exploded" in plugin API
-rw-r--r-- | src/plugins/plugin.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/plugin.c b/src/plugins/plugin.c index fe305c3fd..d023719a6 100644 --- a/src/plugins/plugin.c +++ b/src/plugins/plugin.c @@ -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; |