I am trying to run a script that defines a few (complex) regular expressions: https://github.com/wo/opp-tools/blob/master/rules/Keywords.pm. Whenever I include this module, Perl crashes with the message "panic: reg_node overrun trying to emit 51 at rules/Keywords.pm line 60". This is with Perl v5.14.2 on Ubuntu 12.04. Any ideas what could be the cause of this would be appreciated.
Update: Here is a snippet that causes the problem.
use strict;
use warnings;
use utf8;
my $re_address_word = qr/\b(?:
universit|center|centre|institute?|sciences?|college|research|
avenue|street|philosophy|professor|address|department|
umass
)\b/ix;
our $re_publication_word = qr/\b(?:
forthcoming|editors?|edited|publish\w*|press|volume
to\sappear\sin|draft|editor\w*|reprints?|excerpt|
circulation|cite
)\b/ix;
my $re_notitle = qr/
$re_address_word |
$re_publication_word |
\b(?:thanks?|
@|
[12]\d{3}|
abstract
)/ix;
our $re_title = qr/^
(?!.*$re_notitle?.*)
\p{IsAlpha}
/x;