This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Mark the Perldoc.pm as customized
[perl5.git] / cpan / Pod-Perldoc / lib / Pod / Perldoc.pm
index a952466..84f6624 100644 (file)
@@ -12,7 +12,8 @@ use File::Spec::Functions qw(catfile catdir splitdir);
 use vars qw($VERSION @Pagers $Bindir $Pod2man
   $Temp_Files_Created $Temp_File_Lifetime
 );
-$VERSION = '3.25';
+$VERSION = '3.25_02'; # patched in perl5.git
+$VERSION =~ s/_//;
 
 #..........................................................................
 
@@ -1663,6 +1664,10 @@ sub pagers_guessing {
         push @pagers, qw( less.exe more.com< );
         unshift @pagers, $ENV{PAGER}  if $ENV{PAGER};
     }
+    elsif ( $self->is_amigaos) {
+        push @pagers, qw( /SYS/Utilities/MultiView /SYS/Utilities/More /C/TYPE );
+        unshift @pagers, "$ENV{PAGER}"  if $ENV{PAGER};
+    }
     else {
         if ($self->is_os2) {
           unshift @pagers, 'less', 'cmd /c more <';