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/perl/weechat-perl.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/perl/weechat-perl.c')
-rw-r--r-- | src/plugins/perl/weechat-perl.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/plugins/perl/weechat-perl.c b/src/plugins/perl/weechat-perl.c index 063fe75bd..1759a4810 100644 --- a/src/plugins/perl/weechat-perl.c +++ b/src/plugins/perl/weechat-perl.c @@ -1253,6 +1253,10 @@ weechat_plugin_init (struct t_weechat_plugin *plugin, int argc, char *argv[]) PERL_SYS_INIT3 (&a, (char ***)&perl_args_local, (char ***)&perl_env); #endif /* PERL_SYS_INIT3 */ + /* make C compiler happy */ + (void) argc; + (void) argv; + weechat_perl_plugin = plugin; /* set interpreter name and version */ @@ -1304,7 +1308,7 @@ weechat_plugin_init (struct t_weechat_plugin *plugin, int argc, char *argv[]) perl_data.unload_all = &weechat_perl_unload_all; perl_quiet = 1; - plugin_script_init (weechat_perl_plugin, argc, argv, &perl_data); + plugin_script_init (weechat_perl_plugin, &perl_data); perl_quiet = 0; plugin_script_display_short_list (weechat_perl_plugin, |