diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2009-04-16 14:25:44 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2009-04-16 14:25:44 +0200 |
commit | 44003c2dae28cafba8a8aa95e4a7072775d5a00f (patch) | |
tree | 504b9b343feaa0d91b13c3c1fa8881cdafe7ecc1 /src/plugins/scripts/python/weechat-python.c | |
parent | 771be1a3164fb91b48ddb9eac95bfae955b37cf9 (diff) | |
download | weechat-44003c2dae28cafba8a8aa95e4a7072775d5a00f.zip |
Restore buffer callbacks for scripts after /upgrade
Diffstat (limited to 'src/plugins/scripts/python/weechat-python.c')
-rw-r--r-- | src/plugins/scripts/python/weechat-python.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/plugins/scripts/python/weechat-python.c b/src/plugins/scripts/python/weechat-python.c index 02f09bcc1..4f9087897 100644 --- a/src/plugins/scripts/python/weechat-python.c +++ b/src/plugins/scripts/python/weechat-python.c @@ -834,10 +834,6 @@ weechat_python_signal_script_action_cb (void *data, const char *signal, int weechat_plugin_init (struct t_weechat_plugin *plugin, int argc, char *argv[]) { - /* make C compiler happy */ - (void) argc; - (void) argv; - weechat_python_plugin = plugin; /* init stdout/stderr buffer */ @@ -869,13 +865,18 @@ weechat_plugin_init (struct t_weechat_plugin *plugin, int argc, char *argv[]) python_quiet = 1; script_init (weechat_python_plugin, + argc, + argv, + &python_scripts, &weechat_python_command_cb, &weechat_python_completion_cb, &weechat_python_infolist_cb, &weechat_python_signal_debug_dump_cb, &weechat_python_signal_buffer_closed_cb, &weechat_python_signal_script_action_cb, - &weechat_python_load_cb); + &weechat_python_load_cb, + &weechat_python_api_buffer_input_data_cb, + &weechat_python_api_buffer_close_cb); python_quiet = 0; script_display_short_list (weechat_python_plugin, |