summaryrefslogtreecommitdiff
path: root/docs/perl.txt
diff options
context:
space:
mode:
authorValentin Batz <senneth@irssi.org>2004-09-23 14:12:08 +0000
committersenneth <senneth@dbcabf3a-b0e7-0310-adc4-f8d773084564>2004-09-23 14:12:08 +0000
commit330768de7d0e078496347ca415ad48a47bc76a38 (patch)
tree6391c236107e5b29fa32e217807095b2d5a4ab2d /docs/perl.txt
parenta26038c6647498077bc75b5bda76913f071dac04 (diff)
downloadirssi-330768de7d0e078496347ca415ad48a47bc76a38.zip
Added timeout_add_once function to docs
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3307 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'docs/perl.txt')
-rw-r--r--docs/perl.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/perl.txt b/docs/perl.txt
index 58635d69..e8b066cb 100644
--- a/docs/perl.txt
+++ b/docs/perl.txt
@@ -288,6 +288,10 @@ timeout_add(msecs, func, data)
Call `func' every `msecs' milliseconds (1000 = 1 second) with
parameter `data'. Returns tag which can be used to stop the timeout.
+timeout_add_once(msecs, func, data);
+ Call 'func' once after `msecs' milliseconds (1000 = 1 second)
+ with parameter `data'. Returns tag which can be used to stop the timeout.
+
timeout_remove(tag)
Remove timeout with tag.