From 5bf764ac14c499f3ecab554a13b62edd343ff47d Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Thu, 21 Nov 2002 18:34:54 +0000 Subject: [PATCH] doc/syntax updates git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3020 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- docs/help/in/connect.in | 1 + docs/help/in/dcc.in | 3 ++- src/core/chat-commands.c | 6 ++++-- 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 [] - 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 ] [-host ] +/* SYNTAX: CONNECT [-4 | -6] [-ssl] [-noproxy] [-ircnet ] + [-host ] [-rawlog ]
| [ [ []]] */ 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 ] [-host ] +/* SYNTAX: SERVER [-4 | -6] [-ssl] [-noproxy] [-ircnet ] + [-host ] [-rawlog ] [+]
| [ [ []]] */ static void cmd_server_connect(const char *data, SERVER_REC *server) {