diff options
author | Geert Hauwaerts <geert@hauwaerts.be> | 2014-08-05 22:00:30 +0200 |
---|---|---|
committer | Geert Hauwaerts <geert@hauwaerts.be> | 2014-08-05 22:00:30 +0200 |
commit | f0aa2d204990636a65de9aaba7c13c0866fcaf83 (patch) | |
tree | a28895b766bc1ef61c14eb8c7fc497e951e8ee6f /src/irc | |
parent | b9f532568b92444488ce00c1734013e035d40f56 (diff) | |
download | irssi-f0aa2d204990636a65de9aaba7c13c0866fcaf83.zip |
Syntax rewrite of U-Z commands
Rewrote the syntax documentation of U-Z commands.
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 2f33a26c..239c5a64 100644 --- a/src/irc/core/irc-commands.c +++ b/src/irc/core/irc-commands.c @@ -1012,8 +1012,6 @@ void irc_commands_init(void) command_bind_irc("restart", NULL, (SIGNAL_FUNC) command_self); /* SYNTAX: SQUIT <server>|<mask> <reason> */ command_bind_irc("squit", NULL, (SIGNAL_FUNC) command_2self); - /* SYNTAX: UPING <server> */ - command_bind_irc("uping", NULL, (SIGNAL_FUNC) command_self); /* SYNTAX: USERHOST <nicks> */ command_bind_irc("userhost", NULL, (SIGNAL_FUNC) command_self); command_bind_irc("quote", NULL, (SIGNAL_FUNC) cmd_quote); @@ -1081,7 +1079,6 @@ void irc_commands_deinit(void) command_unbind("oper", (SIGNAL_FUNC) cmd_oper); command_unbind("restart", (SIGNAL_FUNC) command_self); command_unbind("squit", (SIGNAL_FUNC) command_2self); - command_unbind("uping", (SIGNAL_FUNC) command_self); command_unbind("userhost", (SIGNAL_FUNC) command_self); command_unbind("quote", (SIGNAL_FUNC) cmd_quote); command_unbind("wall", (SIGNAL_FUNC) cmd_wall); |