diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2020-03-01 16:41:28 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2020-03-01 16:41:28 +0100 |
commit | c4ef3d6c2e5339d3b6ac2ba255d166a4d8984bce (patch) | |
tree | b36837b6da12cc2e262caf887ab592843d9bda53 /src/plugins/plugin.c | |
parent | 1ae25914588221ece76da2d39ddece16de0c7712 (diff) | |
download | weechat-c4ef3d6c2e5339d3b6ac2ba255d166a4d8984bce.zip |
core: merge functions string_hash_binary and string_hash into a single function string_hash
Diffstat (limited to 'src/plugins/plugin.c')
-rw-r--r-- | src/plugins/plugin.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/plugins/plugin.c b/src/plugins/plugin.c index ff1c4d766..af11d1f28 100644 --- a/src/plugins/plugin.c +++ b/src/plugins/plugin.c @@ -623,7 +623,6 @@ plugin_load (const char *filename, int init_plugin, int argc, char **argv) new_plugin->string_base_encode = &plugin_api_string_base_encode; new_plugin->string_base_decode = &plugin_api_string_base_decode; new_plugin->string_hex_dump = &string_hex_dump; - new_plugin->string_hash_binary = &string_hash_binary; new_plugin->string_hash = &string_hash; new_plugin->string_is_command_char = &string_is_command_char; new_plugin->string_input_for_buffer = &string_input_for_buffer; |