mirror of
https://github.com/irssi/irssi.git
synced 2026-08-19 16:42:30 +02:00
add SERVER_ to constants
This commit is contained in:
parent
f684c18867
commit
ba16d71e9f
2 changed files with 6 additions and 6 deletions
|
|
@ -583,7 +583,7 @@ static void event_helpstart(IRC_SERVER_REC *server, const char *data,
|
||||||
{
|
{
|
||||||
/* Numeric 704 (RPL_HELPSTART) sent as a reply to HELP or HELPOP command.
|
/* Numeric 704 (RPL_HELPSTART) sent as a reply to HELP or HELPOP command.
|
||||||
*/
|
*/
|
||||||
event_help(server, IRCTXT_HELP_START, data);
|
event_help(server, IRCTXT_SERVER_HELP_START, data);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void event_helptxt(IRC_SERVER_REC *server, const char *data,
|
static void event_helptxt(IRC_SERVER_REC *server, const char *data,
|
||||||
|
|
@ -591,7 +591,7 @@ static void event_helptxt(IRC_SERVER_REC *server, const char *data,
|
||||||
{
|
{
|
||||||
/* Numeric 705 (RPL_HELPTXT), sent as a reply to HELP or HELPOP command.
|
/* Numeric 705 (RPL_HELPTXT), sent as a reply to HELP or HELPOP command.
|
||||||
*/
|
*/
|
||||||
event_help(server, IRCTXT_HELP_TXT, data);
|
event_help(server, IRCTXT_SERVER_HELP_TXT, data);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void event_endofhelp(IRC_SERVER_REC *server, const char *data,
|
static void event_endofhelp(IRC_SERVER_REC *server, const char *data,
|
||||||
|
|
@ -599,7 +599,7 @@ static void event_endofhelp(IRC_SERVER_REC *server, const char *data,
|
||||||
{
|
{
|
||||||
/* Numeric 706 (RPL_ENDOFHELP), sent as a reply to HELP or HELPOP command.
|
/* Numeric 706 (RPL_ENDOFHELP), sent as a reply to HELP or HELPOP command.
|
||||||
*/
|
*/
|
||||||
event_help(server, IRCTXT_END_OF_HELP, data);
|
event_help(server, IRCTXT_SERVER_END_OF_HELP, data);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void event_target_too_fast(IRC_SERVER_REC *server, const char *data,
|
static void event_target_too_fast(IRC_SERVER_REC *server, const char *data,
|
||||||
|
|
|
||||||
|
|
@ -66,9 +66,9 @@ enum {
|
||||||
IRCTXT_INVITELIST_LONG,
|
IRCTXT_INVITELIST_LONG,
|
||||||
IRCTXT_NO_SUCH_CHANNEL,
|
IRCTXT_NO_SUCH_CHANNEL,
|
||||||
IRCTXT_CHANNEL_SYNCED,
|
IRCTXT_CHANNEL_SYNCED,
|
||||||
IRCTXT_HELP_START,
|
IRCTXT_SERVER_HELP_START,
|
||||||
IRCTXT_HELP_TXT,
|
IRCTXT_SERVER_HELP_TXT,
|
||||||
IRCTXT_END_OF_HELP,
|
IRCTXT_SERVER_END_OF_HELP,
|
||||||
|
|
||||||
IRCTXT_FILL_4,
|
IRCTXT_FILL_4,
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue