diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2008-02-21 17:31:59 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2008-02-21 17:31:59 +0100 |
commit | dec0e7dc1206e928c38291aae3f5486fd8a8bf12 (patch) | |
tree | c47b6841ce345aa5b4da58d40a90e427dc99a41e /src/plugins/scripts/python | |
parent | 155e689a26fc18f37b3572a5507f1c94edd91648 (diff) | |
download | weechat-dec0e7dc1206e928c38291aae3f5486fd8a8bf12.zip |
Added new plugin "debug"
Diffstat (limited to 'src/plugins/scripts/python')
-rw-r--r-- | src/plugins/scripts/python/weechat-python.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/scripts/python/weechat-python.c b/src/plugins/scripts/python/weechat-python.c index 51236028f..b117cb9e2 100644 --- a/src/plugins/scripts/python/weechat-python.c +++ b/src/plugins/scripts/python/weechat-python.c @@ -581,12 +581,12 @@ weechat_python_completion_cb (void *data, char *completion, } /* - * weechat_python_dump_data_cb: dump Python plugin data in WeeChat log file + * weechat_python_debug_dump_cb: dump Python plugin data in WeeChat log file */ int -weechat_python_dump_data_cb (void *data, char *signal, char *type_data, - void *signal_data) +weechat_python_debug_dump_cb (void *data, char *signal, char *type_data, + void *signal_data) { /* make C compiler happy */ (void) data; @@ -638,7 +638,7 @@ weechat_plugin_init (struct t_weechat_plugin *plugin) script_init (weechat_python_plugin, &weechat_python_command_cb, &weechat_python_completion_cb, - &weechat_python_dump_data_cb, + &weechat_python_debug_dump_cb, &weechat_python_load_cb); /* init ok */ |