From 938598e271a2ec94b38d5739e8a61b761c8aa8cc Mon Sep 17 00:00:00 2001 From: Geert Hauwaerts Date: Wed, 9 Jul 2014 18:33:10 +0200 Subject: [PATCH] Removed the obsolete NOTE command I removed the binding for the NOTE command that doesn't exist anymore on any major network. --- src/irc/core/irc-commands.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/irc/core/irc-commands.c b/src/irc/core/irc-commands.c index 44e4b8a2..0edbfa01 100644 --- a/src/irc/core/irc-commands.c +++ b/src/irc/core/irc-commands.c @@ -965,8 +965,6 @@ void irc_commands_init(void) command_bind_irc("who", NULL, (SIGNAL_FUNC) cmd_who); command_bind_irc("names", NULL, (SIGNAL_FUNC) cmd_names); command_bind_irc("nick", NULL, (SIGNAL_FUNC) cmd_nick); - /* SYNTAX: NOTE [&] [+|-] [] */ - command_bind_irc("note", NULL, (SIGNAL_FUNC) command_self); command_bind_irc("whois", NULL, (SIGNAL_FUNC) cmd_whois); command_bind_irc("whowas", NULL, (SIGNAL_FUNC) cmd_whowas); command_bind_irc("ping", NULL, (SIGNAL_FUNC) cmd_ping); @@ -1062,7 +1060,6 @@ void irc_commands_deinit(void) command_unbind("who", (SIGNAL_FUNC) cmd_who); command_unbind("names", (SIGNAL_FUNC) cmd_names); command_unbind("nick", (SIGNAL_FUNC) cmd_nick); - command_unbind("note", (SIGNAL_FUNC) command_self); command_unbind("whois", (SIGNAL_FUNC) cmd_whois); command_unbind("whowas", (SIGNAL_FUNC) cmd_whowas); command_unbind("ping", (SIGNAL_FUNC) cmd_ping);