diff options
author | Andrew Potter <agpotter@gmail.com> | 2019-08-10 12:55:43 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2019-08-10 12:55:43 +0200 |
commit | 0957231d300b3fa232fc00c691f2c218822ab081 (patch) | |
tree | acf1384b30a335d6f70575cb6bd5c8b3b893cc84 /src/plugins/plugin.c | |
parent | 464d31155a6fcb7e205f623db4f9ad04154b4f64 (diff) | |
download | weechat-0957231d300b3fa232fc00c691f2c218822ab081.zip |
api: add function list_user_data (issue #666)
Diffstat (limited to 'src/plugins/plugin.c')
-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 a11e87612..f39c48f86 100644 --- a/src/plugins/plugin.c +++ b/src/plugins/plugin.c @@ -672,6 +672,7 @@ plugin_load (const char *filename, int init_plugin, int argc, char **argv) new_plugin->list_next = &weelist_next; new_plugin->list_prev = &weelist_prev; new_plugin->list_string = &weelist_string; + new_plugin->list_user_data = &weelist_user_data; new_plugin->list_size = &weelist_size; new_plugin->list_remove = &weelist_remove; new_plugin->list_remove_all = &weelist_remove_all; |