diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-01-07 20:42:57 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-01-07 20:42:57 +0000 |
commit | 6669d9b5421e026578689848262974069f2f6d27 (patch) | |
tree | ecb2eb440132f62954c24ec18cfa10546446a9ea /lib/Pod | |
parent | 0e6f150f8eee9e8d89a6722ffef00c12282358f5 (diff) | |
download | perl-6669d9b5421e026578689848262974069f2f6d27.tar.gz |
Remove the greedy quantifier from inside the grouping (?:) so that it
and the greedy quantifier on the (?:) don't fight each other until the
C stack is exhausted.
p4raw-id: //depot/perl@26702
Diffstat (limited to 'lib/Pod')
-rw-r--r-- | lib/Pod/Simple/BlackBox.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Pod/Simple/BlackBox.pm b/lib/Pod/Simple/BlackBox.pm index 12eba585b9..90f5d6cc37 100644 --- a/lib/Pod/Simple/BlackBox.pm +++ b/lib/Pod/Simple/BlackBox.pm @@ -1675,7 +1675,7 @@ sub _treelet_from_formatting_codes { | ( # $6: stuff containing no start-codes or end-codes (?: - [^A-Z\s>]+ + [^A-Z\s>] | (?: [A-Z](?!<) |