diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2015-01-28 07:45:01 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2015-01-28 07:45:01 +0100 |
commit | 0d9398d038226266170bf58121b26941d5cf899e (patch) | |
tree | f56912fd3e87418721b2ccfd2619725d5df4efd9 /src/plugins/irc | |
parent | ef4476be657fcae15c715406c36086e628cf0a33 (diff) | |
download | weechat-0d9398d038226266170bf58121b26941d5cf899e.zip |
irc: fix completion of commands /allchan and /allpv
Diffstat (limited to 'src/plugins/irc')
-rw-r--r-- | src/plugins/irc/irc-command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/irc/irc-command.c b/src/plugins/irc/irc-command.c index cd8b66d42..94a84c300 100644 --- a/src/plugins/irc/irc-command.c +++ b/src/plugins/irc/irc-command.c @@ -5938,7 +5938,7 @@ irc_command_init () " say 'hello' everywhere but not on #weechat and channels beginning " "with #linux:\n" " /allchan -exclude=#weechat,#linux* msg * hello"), - NULL, &irc_command_allchan, NULL); + "-current", &irc_command_allchan, NULL); weechat_hook_command ( "allpv", N_("execute a command on all private buffers of all connected servers"), @@ -5961,7 +5961,7 @@ irc_command_init () " /allpv -exclude=foo,bar* msg * hello\n" " close all private buffers:\n" " /allpv close"), - NULL, &irc_command_allpv, NULL); + "-current", &irc_command_allpv, NULL); weechat_hook_command ( "allserv", N_("execute a command on all connected servers"), |