summaryrefslogtreecommitdiff
path: root/src/irc/irc-commands.c
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2004-02-29 16:31:26 +0000
committerSebastien Helleu <flashcode@flashtux.org>2004-02-29 16:31:26 +0000
commit81da0f41d7053f0358784b560b302b86e464b290 (patch)
tree0a90a9580eb50493e81211729bc8fca5ccf66673 /src/irc/irc-commands.c
parent070e1b6ec73d1cc1ef6dd56d445e2c6995dce9ae (diff)
downloadweechat-81da0f41d7053f0358784b560b302b86e464b290.zip
Added modes channel (and /mode command is now ok), dcc skeleton, fixed display bug for nicklist
Diffstat (limited to 'src/irc/irc-commands.c')
-rw-r--r--src/irc/irc-commands.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/irc/irc-commands.c b/src/irc/irc-commands.c
index d3bc5bd8c..7acb23d70 100644
--- a/src/irc/irc-commands.c
+++ b/src/irc/irc-commands.c
@@ -44,6 +44,12 @@ t_irc_command irc_commands[] =
N_("nickname type"),
N_("nickname: user to send ctcp to\ntype: \"action\" or \"version\""),
2, MAX_ARGS, 1, NULL, irc_cmd_send_ctcp, NULL },
+ { "dcc", N_("starts DCC (file or chat)"),
+ N_("action nickname [file]"),
+ N_("action: 'send' (file) or 'chat'\n"
+ "nickname: nickname to send file or chat\n"
+ "file: filename (on local host)"),
+ 2, 3, 1, NULL, irc_cmd_send_dcc, NULL },
{ "deop", N_("removes channel operator status from nickname(s)"),
N_("nickname [nickname]"), "",
1, 1, 1, irc_cmd_send_deop, NULL, NULL },