1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-28 13:56:37 +02:00

Fix completion of IRC commands /whois and /whowas

This commit is contained in:
Sebastien Helleu
2009-05-08 09:35:16 +02:00
parent a61e80858d
commit 85ecabdd9f
+2 -2
View File
@@ -4182,7 +4182,7 @@ irc_command_init ()
N_("[server] nickname[,nickname]"),
N_(" server: server name\n"
"nickname: nickname (may be a mask)"),
NULL, &irc_command_whois, NULL);
"%(nicks)", &irc_command_whois, NULL);
weechat_hook_command ("whowas",
N_("ask for information about a nickname which no "
"longer exists"),
@@ -4192,5 +4192,5 @@ irc_command_init ()
" count: number of replies to return "
"(full search if negative number)\n"
" target: reply should match this mask"),
NULL, &irc_command_whowas, NULL);
"%(nicks)", &irc_command_whowas, NULL);
}