diff options
Diffstat (limited to 'cpan/Module-Build/lib/Module/Build/PodParser.pm')
-rw-r--r-- | cpan/Module-Build/lib/Module/Build/PodParser.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpan/Module-Build/lib/Module/Build/PodParser.pm b/cpan/Module-Build/lib/Module/Build/PodParser.pm index 8230192056..456f8deaa0 100644 --- a/cpan/Module-Build/lib/Module/Build/PodParser.pm +++ b/cpan/Module-Build/lib/Module/Build/PodParser.pm @@ -2,7 +2,7 @@ package Module::Build::PodParser; use strict; use vars qw($VERSION); -$VERSION = '0.39_01'; +$VERSION = '0.40'; $VERSION = eval $VERSION; use vars qw(@ISA); @@ -28,7 +28,7 @@ sub parse_from_filehandle { local $_; while (<$fh>) { next unless /^=(?!cut)/ .. /^=cut/; # in POD - last if ($self->{abstract}) = /^ (?: [a-z:]+ \s+ - \s+ ) (.*\S) /ix; + last if ($self->{abstract}) = /^ (?: [a-z0-9:]+ \s+ - \s+ ) (.*\S) /ix; } my @author; |