summaryrefslogtreecommitdiff
path: root/docs/PERL
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2000-02-25 17:03:17 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2000-02-25 17:03:17 +0000
commitf5fc6247811c782c5ae42d14a15b7d714f564958 (patch)
treeee629ade0e7485d003db0a4fab108bf5c72a0b6b /docs/PERL
parent3d513eebfad1c55c76da5b7a26c59d7b20eabd50 (diff)
downloadirssi-f5fc6247811c782c5ae42d14a15b7d714f564958.zip
Irssi 0.7.27 released.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@130 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'docs/PERL')
-rw-r--r--docs/PERL7
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/PERL b/docs/PERL
index 9a03e589..31ca7439 100644
--- a/docs/PERL
+++ b/docs/PERL
@@ -127,7 +127,7 @@ Server::values()
"connection_lost" - Did we lose the connection (1) or was
the connection meant to be disconnected (0)
Example:
- %server_info = %{$Irssi::cur_server->values()};
+ %server_info = %{Irssi::cur_server->values()};
Irssi::print("Current server = ".$server_info{'address'});
Server server_connect(address, [port=6667, [password='', [nick='']]])
@@ -195,7 +195,7 @@ Server::redirect_event(arg, last, ...)
Example:
$server->send_raw('WHOIS :cras');
- $server->redirect_event('cras', 2
+ $server->redirect_event('cras', 2,
"event 318", "redir end_of_whois", -1,
"event 402", "redir no_such_server", -1,
"event 401", "redir no_such_nick", 1,
@@ -242,6 +242,7 @@ Channel::values()
has keys:
"name" - channel name
"type" - channel type ("channel", "query", "dcc chat", "empty")
+ "password" - channel password
Channel Server::channel_create(channel, type, automatic)
Create new channel with name `channel'. `type' is one of:
@@ -253,7 +254,7 @@ Channel Server::channel_create(channel, type, automatic)
`automatic' means that channel is created "automatically" and
Irssi will NOT change the active window to it.
-Channel::_destroy()
+Channel::destroy()
Destroy channel.
Channel::change_name(name)