From: Jarkko Hietaniemi Date: Wed, 30 Jul 2003 13:19:03 +0000 (+0000) Subject: Match also on full name and email (though the email is X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=924a5df912d426c87116919236e37a89c996fd37;p=p5sagit%2Fp5-mst-13.2.git Match also on full name and email (though the email is now less interesting than it used to be). p4raw-id: //depot/perl@20347 --- diff --git a/Porting/Maintainers b/Porting/Maintainers index a9a9288..9c87803 100644 --- a/Porting/Maintainers +++ b/Porting/Maintainers @@ -88,7 +88,7 @@ sub get_maintainer_modules { if ($Maintainer) { for my $m (sort keys %Maintainers) { - if ($m =~ /$Maintainer/io) { + if ($m =~ /$Maintainer/io || $Maintainers{$m} =~ /$Maintainer/io) { my @modules = get_maintainer_modules($m); if ($Module) { @modules = grep { /$Module/io } @modules;