diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2023-05-30 20:53:42 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2023-05-30 20:56:25 +0200 |
commit | 71b85f12384e101f772dce249cda8d9199b6ea3e (patch) | |
tree | 84286be1392b096b31df40221920eab1eef06167 /src/plugins/python/weechat-python.c | |
parent | eda62e1218c70f7c67690b0cf9fe2c42a8663d6f (diff) | |
download | weechat-71b85f12384e101f772dce249cda8d9199b6ea3e.zip |
core: send all command line parameters not beginning with a dash to all plugins, add info "auto_load_scripts"
This fixes an issue with IRC URL given on command line when it starts with
`ircs://` or `irc6://`: the server is not created at all (only `irc://` works
fine).
Diffstat (limited to 'src/plugins/python/weechat-python.c')
-rw-r--r-- | src/plugins/python/weechat-python.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/plugins/python/weechat-python.c b/src/plugins/python/weechat-python.c index c06b4eb43..8a5883327 100644 --- a/src/plugins/python/weechat-python.c +++ b/src/plugins/python/weechat-python.c @@ -1465,6 +1465,10 @@ weechat_python_signal_script_action_cb (const void *pointer, void *data, 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; /* set interpreter name and version */ @@ -1532,7 +1536,7 @@ weechat_plugin_init (struct t_weechat_plugin *plugin, int argc, char *argv[]) python_data.unload_all = &weechat_python_unload_all; python_quiet = 1; - plugin_script_init (weechat_python_plugin, argc, argv, &python_data); + plugin_script_init (weechat_python_plugin, &python_data); python_quiet = 0; plugin_script_display_short_list (weechat_python_plugin, |