diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2013-04-28 13:34:44 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2013-04-28 13:34:44 +0200 |
commit | cf8a125ef233bff8315f28540753f50cad279663 (patch) | |
tree | 8b724977fd42e03a659e2ad729aa6a20494e2a35 /src/plugins/irc/irc-channel.h | |
parent | 4b1d87640c7b70abc5e23aca045795aa0499bd52 (diff) | |
download | weechat-cf8a125ef233bff8315f28540753f50cad279663.zip |
irc: fix duplicate nick completion when someone rejoins the channel with same nick but a different case (bug #38841)
Diffstat (limited to 'src/plugins/irc/irc-channel.h')
-rw-r--r-- | src/plugins/irc/irc-channel.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/plugins/irc/irc-channel.h b/src/plugins/irc/irc-channel.h index 1e76b06fb..24465be5b 100644 --- a/src/plugins/irc/irc-channel.h +++ b/src/plugins/irc/irc-channel.h @@ -108,6 +108,9 @@ extern void irc_channel_nick_speaking_add (struct t_irc_channel *channel, extern void irc_channel_nick_speaking_rename (struct t_irc_channel *channel, const char *old_nick, const char *new_nick); +extern void irc_channel_nick_speaking_rename_if_present (struct t_irc_server *server, + struct t_irc_channel *channel, + const char *nick_name); extern struct t_irc_channel_speaking *irc_channel_nick_speaking_time_search (struct t_irc_server *server, struct t_irc_channel *channel, const char *nick_name, |