irc: fix completion of commands /allchan and /allpv

v2.8-utf8proc
Sébastien Helleu 2015-01-28 07:45:01 +01:00
parent ef4476be65
commit 0d9398d038
2 changed files with 6 additions and 2 deletions

View File

@ -25,6 +25,10 @@ https://weechat.org/files/releasenotes/ReleaseNotes-devel.html[release notes]
* core: add priority in plugins to initialize them in order
* doc: add Russian man page
=== Bugs fixed
* irc: fix completion of commands /allchan and /allpv
== Version 1.1.1 (2015-01-25)
=== Bugs fixed

View File

@ -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"),