perldoc -m [PATCH]
John L. Allen [Fri, 22 Mar 2002 15:38:35 +0000 (10:38 -0500)]
From: "John L. Allen" <allen@grumman.com>
Message-ID: <Pine.SOL.3.91.1020322151516.25645A-100000@gateway.grumman.com>

p4raw-id: //depot/perl@15449

utils/perldoc.PL

index 0824e0a..7929a27 100644 (file)
@@ -342,7 +342,7 @@ sub searchfor {
     for ($i=0; $i<@dirs; $i++) {
        $dir = $dirs[$i];
        ($dir = VMS::Filespec::unixpath($dir)) =~ s!/\z!! if $Is_VMS;
-       if (       ( $ret = check_file $dir,"$s.pod")
+       if (       (! $opt_m && ( $ret = check_file $dir,"$s.pod"))
                or ( $ret = check_file $dir,"$s.pm")
                or ( $ret = check_file $dir,$s)
                or ( $Is_VMS and
@@ -458,7 +458,8 @@ foreach (@pages) {
            print STDERR "Loosely found as @files\n" if $opt_v;
        }
        else {
-           print STDERR "No documentation found for \"$_\".\n";
+           print STDERR "No " .
+               ($opt_m ? "module" : "documentation") . " found for \"$_\".\n";
            if (@global_found) {
                print STDERR "However, try\n";
                for my $dir (@global_found) {