diff options
author | Geert Hauwaerts <geert@hauwaerts.be> | 2014-07-09 18:33:10 +0200 |
---|---|---|
committer | Geert Hauwaerts <geert@hauwaerts.be> | 2014-07-09 18:33:10 +0200 |
commit | 938598e271a2ec94b38d5739e8a61b761c8aa8cc (patch) | |
tree | c26548d925b847e4d133234424089b3e01ff9b84 /src/irc | |
parent | 8014fd2cb0d05b41a7b3b9bbe26e91a5fd040651 (diff) | |
download | irssi-938598e271a2ec94b38d5739e8a61b761c8aa8cc.zip |
Removed the obsolete NOTE command
I removed the binding for the NOTE command that doesn't exist anymore on
any major network.
Diffstat (limited to 'src/irc')
-rw-r--r-- | src/irc/core/irc-commands.c | 3 |
1 files changed, 0 insertions, 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> [&<password>] [+|-<flags>] [<arguments>] */ - 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); |