summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/help/in/say.in11
-rw-r--r--docs/help/in/servlist.in21
-rw-r--r--docs/help/in/squery.in12
-rw-r--r--src/irc/core/irc-commands.c6
4 files changed, 0 insertions, 50 deletions
diff --git a/docs/help/in/say.in b/docs/help/in/say.in
deleted file mode 100644
index 6997743d..00000000
--- a/docs/help/in/say.in
+++ /dev/null
@@ -1,11 +0,0 @@
-
-SAY <message>
-(alias for "/MSG *")
-
-The actual command used to put <message> into the current channel. A very
-useful command if you need aliases for often used phrases.
-
-For example: /alias brb say I'm off for a while, be right back.
-
-This would allow you to use /brb to put the "I'm off*" into the channel.
-
diff --git a/docs/help/in/servlist.in b/docs/help/in/servlist.in
deleted file mode 100644
index e9b61a6d..00000000
--- a/docs/help/in/servlist.in
+++ /dev/null
@@ -1,21 +0,0 @@
-
-@SYNTAX:servlist@
-
-Works only on IRCnet.
-
-SERVLIST gives the list of services currently present on the
-IRC network. It can take two arguments.
- <mask> limits the output to the services which names matches
- the mask.
- <type> limits the output to the services of the specified type.
-
-The fields returned are:
- Service name.
- Server who introduced the service.
- Distribution mask.
- Service type.
- Hop count to the service.
- A comment.
-
-See also: SQUERY
-
diff --git a/docs/help/in/squery.in b/docs/help/in/squery.in
deleted file mode 100644
index 9c29b956..00000000
--- a/docs/help/in/squery.in
+++ /dev/null
@@ -1,12 +0,0 @@
-
-@SYNTAX:squery@
-
- <service> - Service name
- <commands> - Commands to pass to the service.
-
-Works only on IRCnet.
-
-/SQUERY sends a query to the specified service.
-
-See also: SERVLIST, NOTE, LIST
-
diff --git a/src/irc/core/irc-commands.c b/src/irc/core/irc-commands.c
index 71828022..2f33a26c 100644
--- a/src/irc/core/irc-commands.c
+++ b/src/irc/core/irc-commands.c
@@ -998,15 +998,11 @@ void irc_commands_init(void)
command_bind_irc("trace", NULL, (SIGNAL_FUNC) command_self);
/* SYNTAX: VERSION [<server>|<nick>] */
command_bind_irc("version", NULL, (SIGNAL_FUNC) command_self);
- /* SYNTAX: SERVLIST [<server mask>] */
- command_bind_irc("servlist", NULL, (SIGNAL_FUNC) command_self);
/* SYNTAX: SILENCE [[+|-]<nick!user@host>]
SILENCE [<nick>] */
command_bind_irc("silence", NULL, (SIGNAL_FUNC) command_self);
command_bind_irc("unsilence", NULL, (SIGNAL_FUNC) cmd_unsilence);
command_bind_irc("sconnect", NULL, (SIGNAL_FUNC) cmd_sconnect);
- /* SYNTAX: SQUERY <service> [<commands>] */
- command_bind_irc("squery", NULL, (SIGNAL_FUNC) command_2self);
/* SYNTAX: DIE */
command_bind_irc("die", NULL, (SIGNAL_FUNC) command_self);
/* SYNTAX: HASH */
@@ -1077,11 +1073,9 @@ void irc_commands_deinit(void)
command_unbind("time", (SIGNAL_FUNC) command_self);
command_unbind("trace", (SIGNAL_FUNC) command_self);
command_unbind("version", (SIGNAL_FUNC) command_self);
- command_unbind("servlist", (SIGNAL_FUNC) command_self);
command_unbind("silence", (SIGNAL_FUNC) command_self);
command_unbind("unsilence", (SIGNAL_FUNC) cmd_unsilence);
command_unbind("sconnect", (SIGNAL_FUNC) cmd_sconnect);
- command_unbind("squery", (SIGNAL_FUNC) command_2self);
command_unbind("die", (SIGNAL_FUNC) command_self);
command_unbind("hash", (SIGNAL_FUNC) command_self);
command_unbind("oper", (SIGNAL_FUNC) cmd_oper);