mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
Revert "Add ERR_HELPNOTFOUND"
This reverts commit 91439c099e1bbf848dac03f67a3239fcc4c1f771; because it adds handling for numeric 524, which conflicts with ERR_QUARANTINED and ERR_OPERSPVERIFY.
This commit is contained in:
parent
41b3895ce3
commit
48571389c7
@ -578,14 +578,6 @@ static void event_help(IRC_SERVER_REC *server, int formatnum, const char *data)
|
||||
g_free(params);
|
||||
}
|
||||
|
||||
static void event_helpnotfound(IRC_SERVER_REC *server, const char *data,
|
||||
const char *nick)
|
||||
{
|
||||
/* Numeric 524 (ERR_HELPNOTFOUND) sent as a reply to HELP or HELPOP command.
|
||||
*/
|
||||
event_help(server, IRCTXT_HELP_NOT_FOUND, data);
|
||||
}
|
||||
|
||||
static void event_helpstart(IRC_SERVER_REC *server, const char *data,
|
||||
const char *nick)
|
||||
{
|
||||
@ -769,7 +761,6 @@ void fe_events_numeric_init(void)
|
||||
signal_add("event 372", (SIGNAL_FUNC) event_motd);
|
||||
signal_add("event 422", (SIGNAL_FUNC) event_motd);
|
||||
signal_add("event 439", (SIGNAL_FUNC) event_target_too_fast);
|
||||
signal_add("event 524", (SIGNAL_FUNC) event_helpnotfound);
|
||||
signal_add("event 704", (SIGNAL_FUNC) event_helpstart);
|
||||
signal_add("event 705", (SIGNAL_FUNC) event_helptxt);
|
||||
signal_add("event 706", (SIGNAL_FUNC) event_endofhelp);
|
||||
@ -868,7 +859,6 @@ void fe_events_numeric_deinit(void)
|
||||
signal_remove("event 372", (SIGNAL_FUNC) event_motd);
|
||||
signal_remove("event 422", (SIGNAL_FUNC) event_motd);
|
||||
signal_remove("event 439", (SIGNAL_FUNC) event_target_too_fast);
|
||||
signal_remove("event 524", (SIGNAL_FUNC) event_helpnotfound);
|
||||
signal_remove("event 704", (SIGNAL_FUNC) event_helpstart);
|
||||
signal_remove("event 705", (SIGNAL_FUNC) event_helptxt);
|
||||
signal_remove("event 706", (SIGNAL_FUNC) event_endofhelp);
|
||||
|
@ -89,7 +89,6 @@ FORMAT_REC fecommon_irc_formats[] = {
|
||||
{ "invitelist_long", "{channel $0}: invite {ban $1} {comment by {nick $2}, $3 secs ago}", 4, { 0, 0, 0, 1 } },
|
||||
{ "no_such_channel", "{channel $0}: No such channel", 1, { 0 } },
|
||||
{ "channel_synced", "Join to {channel $0} was synced in {hilight $1} secs", 2, { 0, 2 } },
|
||||
{ "irctxt_help_not_found", "$1", 2, { 0, 0 } },
|
||||
{ "irctxt_help_start", "$1", 2, { 0, 0 } },
|
||||
{ "irctxt_help_txt", "$1", 2, { 0, 0 } },
|
||||
{ "irctxt_end_of_help", "$1", 2, { 0, 0 } },
|
||||
|
@ -66,7 +66,6 @@ enum {
|
||||
IRCTXT_INVITELIST_LONG,
|
||||
IRCTXT_NO_SUCH_CHANNEL,
|
||||
IRCTXT_CHANNEL_SYNCED,
|
||||
IRCTXT_HELP_NOT_FOUND,
|
||||
IRCTXT_HELP_START,
|
||||
IRCTXT_HELP_TXT,
|
||||
IRCTXT_END_OF_HELP,
|
||||
|
Loading…
Reference in New Issue
Block a user