summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2002-11-21 18:34:54 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2002-11-21 18:34:54 +0000
commit5bf764ac14c499f3ecab554a13b62edd343ff47d (patch)
treeff1ce51acda17d42521f6200edc38ae9a4f66d3d
parent7c7afe9f543dc4ed997f0a65df84764601848973 (diff)
downloadirssi-5bf764ac14c499f3ecab554a13b62edd343ff47d.zip
doc/syntax updates
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3020 dbcabf3a-b0e7-0310-adc4-f8d773084564
-rw-r--r--docs/help/in/connect.in1
-rw-r--r--docs/help/in/dcc.in3
-rw-r--r--src/core/chat-commands.c6
3 files changed, 7 insertions, 3 deletions
diff --git a/docs/help/in/connect.in b/docs/help/in/connect.in
index aa5e3b20..cfe5e071 100644
--- a/docs/help/in/connect.in
+++ b/docs/help/in/connect.in
@@ -6,6 +6,7 @@
-ircnet: the IRCNet
-host: the host
-!: don't autojoin channels
+ -rawlog: immediately open rawlog after connected
This command makes irssi to connect to specified server.
Current connections are kept and a new one is created.
diff --git a/docs/help/in/dcc.in b/docs/help/in/dcc.in
index d18afcd3..e2a3da3a 100644
--- a/docs/help/in/dcc.in
+++ b/docs/help/in/dcc.in
@@ -20,7 +20,8 @@ files.
- Sends a DCC SEND request to remote client. Remote end has to accept
the request before the transmission can be started. Giving multiple files
queues them. File names may contain shell expansion characters: * ? [] ~
- (~ expansion may not be supported on all platforms)
+ (~ expansion may not be supported on all platforms). Files with spaces
+ in their names need to be quoted (eg. "file name").
/DCC CLOSE <type> <nick> [<file>]
- Closes a DCC-connection. Type can be either SEND, GET or CHAT.
diff --git a/src/core/chat-commands.c b/src/core/chat-commands.c
index aff0d8b7..16c3a0e9 100644
--- a/src/core/chat-commands.c
+++ b/src/core/chat-commands.c
@@ -112,7 +112,8 @@ static SERVER_CONNECT_REC *get_server_connect(const char *data, int *plus_addr,
return conn;
}
-/* SYNTAX: CONNECT [-4 | -6] [-ssl] [-ircnet <ircnet>] [-host <hostname>]
+/* SYNTAX: CONNECT [-4 | -6] [-ssl] [-noproxy] [-ircnet <ircnet>]
+ [-host <hostname>] [-rawlog <file>]
<address>|<chatnet> [<port> [<password> [<nick>]]] */
static void cmd_connect(const char *data)
{
@@ -213,7 +214,8 @@ static void sig_default_command_server(const char *data, SERVER_REC *server,
signal_emit("command server connect", 3, data, server, item);
}
-/* SYNTAX: SERVER [-4 | -6] [-ssl] [-ircnet <ircnet>] [-host <hostname>]
+/* SYNTAX: SERVER [-4 | -6] [-ssl] [-noproxy] [-ircnet <ircnet>]
+ [-host <hostname>] [-rawlog <file>]
[+]<address>|<chatnet> [<port> [<password> [<nick>]]] */
static void cmd_server_connect(const char *data, SERVER_REC *server)
{