diff options
author | Abir Viqar <abiviq@hushmail.com> | 2013-10-03 16:40:13 -0400 |
---|---|---|
committer | Steve Hay <steve.m.hay@googlemail.com> | 2013-12-19 17:26:21 +0000 |
commit | 5c404e2c7db2b223a9681288c75a963c279640f9 (patch) | |
tree | 644742f873af6e0bca6e7e06ae899fd19f3ba798 /Porting | |
parent | b88937b3b612eec078920cec65cfef193797f906 (diff) | |
download | perl-5c404e2c7db2b223a9681288c75a963c279640f9.tar.gz |
Porting/corelist.pl - DeltaParser: match modules in L<> and C<>
Module names have been listed in both
Diffstat (limited to 'Porting')
-rwxr-xr-x | Porting/corelist-perldelta.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Porting/corelist-perldelta.pl b/Porting/corelist-perldelta.pl index b22c75ae3d..cf34bdd225 100755 --- a/Porting/corelist-perldelta.pl +++ b/Porting/corelist-perldelta.pl @@ -317,7 +317,7 @@ sub do_check { my ($el) = @_; return unless ref $el && $el->[0] =~ /^item-/ && @{ $el } > 2 && ref $el->[2]; - return unless $el->[2]->[0] eq 'C'; + return unless $el->[2]->[0] =~ /C|L/; return 1; }); |