Match also on full name and email (though the email is
Jarkko Hietaniemi [Wed, 30 Jul 2003 13:19:03 +0000 (13:19 +0000)]
now less interesting than it used to be).

p4raw-id: //depot/perl@20347

Porting/Maintainers

index a9a9288..9c87803 100644 (file)
@@ -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;