summaryrefslogtreecommitdiff
path: root/Porting
diff options
context:
space:
mode:
authorAbir Viqar <abiviq@hushmail.com>2013-10-03 16:40:13 -0400
committerSteve Hay <steve.m.hay@googlemail.com>2013-12-19 17:26:21 +0000
commit5c404e2c7db2b223a9681288c75a963c279640f9 (patch)
tree644742f873af6e0bca6e7e06ae899fd19f3ba798 /Porting
parentb88937b3b612eec078920cec65cfef193797f906 (diff)
downloadperl-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-xPorting/corelist-perldelta.pl2
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;
});