summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormertz2002-09-20 16:39:41 +0000
committermertz2002-09-20 16:39:41 +0000
commit49f2a37bb15f0d87aa132a48d430e75bf86bac28 (patch)
treee577b0be6aab5778fc4c4aedd399dcf5cdd7075a
parent35c92915e82136e9eec1aec2332a6205d11132bb (diff)
downloadivy-perl-49f2a37bb15f0d87aa132a48d430e75bf86bac28.zip
ivy-perl-49f2a37bb15f0d87aa132a48d430e75bf86bac28.tar.gz
ivy-perl-49f2a37bb15f0d87aa132a48d430e75bf86bac28.tar.bz2
ivy-perl-49f2a37bb15f0d87aa132a48d430e75bf86bac28.tar.xz
man slight correction
-rw-r--r--Ivy.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/Ivy.pm b/Ivy.pm
index 4b535e8..34914d6 100644
--- a/Ivy.pm
+++ b/Ivy.pm
@@ -2013,7 +2013,8 @@ See perlre(1) to find how to write regexps.
Use the bracketing construct ( ... ) so that your callback is
called with the captured bits of text as parameters.
To unbind callback(s) associated to a regexp use bindRegexp with only
-one argument, the regexp.
+one argument, the regexp. Note that doing the same binding more than
+once will induce multiple call of the same callback (this is usually a bug).
Example :
$ivyobject->bindRegexp("\w+ (\d+)", [\&callback, @cb_parameters]);