summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2000-03-18 21:50:38 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2000-03-18 21:50:38 +0000
commit6b96becc795de7a7c421ba8c3c1f6a4912729dcd (patch)
tree27bf13fed209494a825d52616148009446d1ac77 /docs
parentcc01075295e1501e9465e6b79d562d3008b814c9 (diff)
downloadirssi-6b96becc795de7a7c421ba8c3c1f6a4912729dcd.zip
Merged line-split from i2k. Several other cleanups.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@156 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'docs')
-rw-r--r--docs/PERL8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/PERL b/docs/PERL
index 646eec73..a96f768a 100644
--- a/docs/PERL
+++ b/docs/PERL
@@ -173,13 +173,13 @@ command_bind(cmd, category, func)
command_unbind(cmd, func)
Unbind command `cmd' from function 'func.
-Server::command_split(cmd, arg, max_nicks)
+Server::irc_send_cmd_split(cmd, arg, max_nicks)
Split the `cmd' into several commands so `arg' argument has only
`max_nicks' number of nicks.
- Example: $server->command_split("KICK nick1,nick2,nick3 :byebye", 1, 2);
- Irssi will send commands "KICK nick1,nick2 :byebye" and
- "KICK nick3 :byebye" to server.
+ Example: $server->irc_send_cmd_split("KICK #channel nick1,nick2,nick3 :byebye", 2, 2);
+ Irssi will send commands "KICK #channel nick1,nick2 :byebye" and
+ "KICK #channel nick3 :byebye" to server.
*** Server functions