diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2020-05-21 00:02:24 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2020-05-21 00:02:24 +0200 |
commit | 1994d5641dda09d3825b4cc6baf3b57a20b2ffc2 (patch) | |
tree | fe874854efeb99ed1a52186fb8f36d456f4b0fee /src/plugins/plugin.c | |
parent | 0ac936a5cfe3f0b962eb1f6cfea0192107656117 (diff) | |
download | weechat-1994d5641dda09d3825b4cc6baf3b57a20b2ffc2.zip |
core: move functions string_base_encode and string_base_decode from plugin-api.c to wee-string.c
Diffstat (limited to 'src/plugins/plugin.c')
-rw-r--r-- | src/plugins/plugin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/plugin.c b/src/plugins/plugin.c index ab929983e..5f0a75f5c 100644 --- a/src/plugins/plugin.c +++ b/src/plugins/plugin.c @@ -633,8 +633,8 @@ plugin_load (const char *filename, int init_plugin, int argc, char **argv) new_plugin->string_free_split_command = &string_free_split_command; new_plugin->string_format_size = &string_format_size; new_plugin->string_remove_color = &gui_color_decode; - new_plugin->string_base_encode = &plugin_api_string_base_encode; - new_plugin->string_base_decode = &plugin_api_string_base_decode; + new_plugin->string_base_encode = &string_base_encode; + new_plugin->string_base_decode = &string_base_decode; new_plugin->string_hex_dump = &string_hex_dump; new_plugin->string_is_command_char = &string_is_command_char; new_plugin->string_input_for_buffer = &string_input_for_buffer; |