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/lua/weechat-lua.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/lua/weechat-lua.c')
-rw-r--r-- | src/plugins/lua/weechat-lua.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/plugins/lua/weechat-lua.c b/src/plugins/lua/weechat-lua.c index 1a247bfab..f9338120c 100644 --- a/src/plugins/lua/weechat-lua.c +++ b/src/plugins/lua/weechat-lua.c @@ -1237,6 +1237,10 @@ weechat_lua_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_lua_plugin = plugin; /* set interpreter name and version */ @@ -1271,7 +1275,7 @@ weechat_plugin_init (struct t_weechat_plugin *plugin, int argc, char *argv[]) lua_data.unload_all = &weechat_lua_unload_all; lua_quiet = 1; - plugin_script_init (weechat_lua_plugin, argc, argv, &lua_data); + plugin_script_init (weechat_lua_plugin, &lua_data); lua_quiet = 0; plugin_script_display_short_list (weechat_lua_plugin, |