diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2022-07-02 20:30:24 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2022-07-02 20:34:34 +0200 |
commit | 2095887be98c768da5e426cfd54e90b268e9db03 (patch) | |
tree | 320a011803d4292db472f7a21325377d6609db8c /src/plugins/irc | |
parent | fa05f75b74ff392d10292bca41e8106ebca32341 (diff) | |
download | weechat-2095887be98c768da5e426cfd54e90b268e9db03.zip |
irc: fix comments (issue #1772)
Diffstat (limited to 'src/plugins/irc')
-rw-r--r-- | src/plugins/irc/irc-protocol.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/plugins/irc/irc-protocol.c b/src/plugins/irc/irc-protocol.c index 61ee169a9..7e11acc4a 100644 --- a/src/plugins/irc/irc-protocol.c +++ b/src/plugins/irc/irc-protocol.c @@ -6587,11 +6587,12 @@ IRC_PROTOCOL_CALLBACK(470) * 705 mynick topic :The <topic> is blah blah * 705 mynick topic :and this * 705 mynick topic :and that. - * 706 mynick topic :Last help line of <topic> + * 706 mynick topic :End of /HELPOP * * Or: * 524 mynick topic :help not found */ + IRC_PROTOCOL_CALLBACK(help) { char *str_message; @@ -7282,11 +7283,11 @@ irc_protocol_recv_command (struct t_irc_server *server, IRCB(491, 1, 0, generic_error), /* no O-lines for your host */ IRCB(501, 1, 0, generic_error), /* unknown mode flag */ IRCB(502, 1, 0, generic_error), /* can't chg mode for other users */ - IRCB(524, 1, 0, help), /* HELP/HELPOP reply (help not found) */ + IRCB(524, 1, 0, help), /* HELP/HELPOP (help not found) */ IRCB(671, 1, 0, whois_nick_msg), /* whois (secure connection) */ - IRCB(704, 1, 0, help), /* start of HELP/HELPOP reply */ - IRCB(705, 1, 0, help), /* main HELP/HELPOP reply */ - IRCB(706, 1, 0, help), /* end of HELP/HELPOP reply */ + IRCB(704, 1, 0, help), /* start of HELP/HELPOP */ + IRCB(705, 1, 0, help), /* body of HELP/HELPOP */ + IRCB(706, 1, 0, help), /* end of HELP/HELPOP */ IRCB(728, 1, 0, 728), /* quietlist */ IRCB(729, 1, 0, 729), /* end of quietlist */ IRCB(730, 1, 0, 730), /* monitored nicks online */ |