summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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.