summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmanuele Giaquinta <exg@irssi.org>2008-01-21 17:30:14 +0000
committerexg <exg@dbcabf3a-b0e7-0310-adc4-f8d773084564>2008-01-21 17:30:14 +0000
commitf5194e296df0686c1824cb4dbdbfaf70cd34879d (patch)
tree74757266a149cc6ad19f409afb756e88953fecdb
parent3edcc7a61151792c61d61bb46930c69feed079ff (diff)
downloadirssi-f5194e296df0686c1824cb4dbdbfaf70cd34879d.zip
Remove undocumented /RAWQUOTE command.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4676 dbcabf3a-b0e7-0310-adc4-f8d773084564
-rw-r--r--src/irc/core/irc-commands.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/irc/core/irc-commands.c b/src/irc/core/irc-commands.c
index 7255ad7e..7d3b861f 100644
--- a/src/irc/core/irc-commands.c
+++ b/src/irc/core/irc-commands.c
@@ -582,17 +582,6 @@ static void cmd_quote(const char *data, IRC_SERVER_REC *server)
irc_send_cmd(server, data);
}
-/* SYNTAX: RAWQUOTE <data> */
-static void cmd_rawquote(const char *data, IRC_SERVER_REC *server)
-{
- if (server != NULL && !IS_IRC_SERVER(server))
- return;
- if (server == NULL || server->connect_time == 0)
- cmd_return_error(CMDERR_NOT_CONNECTED);
-
- irc_send_cmd_full(server, data, FALSE, FALSE, TRUE);
-}
-
static void cmd_wall_hash(gpointer key, NICK_REC *nick, GSList **nicks)
{
if (nick->op) *nicks = g_slist_append(*nicks, nick);
@@ -1075,7 +1064,6 @@ void irc_commands_init(void)
/* SYNTAX: USERHOST <nicks> */
command_bind_irc("userhost", NULL, (SIGNAL_FUNC) command_self);
command_bind_irc("quote", NULL, (SIGNAL_FUNC) cmd_quote);
- command_bind_irc("rawquote", NULL, (SIGNAL_FUNC) cmd_rawquote);
command_bind_irc("wall", NULL, (SIGNAL_FUNC) cmd_wall);
command_bind_irc("wallchops", NULL, (SIGNAL_FUNC) cmd_wallchops);
command_bind_irc("wait", NULL, (SIGNAL_FUNC) cmd_wait);
@@ -1148,7 +1136,6 @@ void irc_commands_deinit(void)
command_unbind("uping", (SIGNAL_FUNC) command_self);
command_unbind("userhost", (SIGNAL_FUNC) command_self);
command_unbind("quote", (SIGNAL_FUNC) cmd_quote);
- command_unbind("rawquote", (SIGNAL_FUNC) cmd_rawquote);
command_unbind("wall", (SIGNAL_FUNC) cmd_wall);
command_unbind("wallchops", (SIGNAL_FUNC) cmd_wallchops);
command_unbind("wait", (SIGNAL_FUNC) cmd_wait);