1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-29 14:26:39 +02:00

Add arguments for IRC command /rehash

This commit is contained in:
Sebastien Helleu
2009-12-02 12:11:20 +01:00
parent 3d3941789b
commit bb9a31e753
13 changed files with 126 additions and 80 deletions
+6 -5
View File
@@ -2710,11 +2710,12 @@ irc_command_rehash (void *data, struct t_gui_buffer *buffer, int argc,
/* make C compiler happy */
(void) data;
(void) argc;
(void) argv;
(void) argv_eol;
irc_server_sendf (ptr_server, 0, "REHASH");
if (argc > 1)
irc_server_sendf (ptr_server, 0, "REHASH %s", argv_eol[1]);
else
irc_server_sendf (ptr_server, 0, "REHASH");
return WEECHAT_RC_OK;
}
@@ -4122,8 +4123,8 @@ irc_command_init ()
&irc_command_reconnect, NULL);
weechat_hook_command ("rehash",
N_("tell the server to reload its config file"),
"",
"",
N_("[option]"),
N_("option: extra option, for some servers"),
NULL, &irc_command_rehash, NULL);
weechat_hook_command ("restart",
N_("tell the server to restart itself"),