Subject: | unmatched ) in regex |
the following script demonstrates the problem:
use Text::Tiki;
my $text = qq{ address\@foo.com)};
my $tiki = new Text::Tiki;
print $tiki->format($text);
gives the following error:
Unmatched ) in regex; marked by <-- HERE in m/address@foo.com) <-- HERE / at /usr/lib/perl5/site_perl/5.8.6/Text/Tiki.pm line 468.
that's a minimal version, but basically, anytime an email address appears anywhere in the text with a space before it and a ')' directly after it, the error is generated.