summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorChip Turner <cturner@redhat.com>2003-01-02 06:35:57 -0500
committerhv <hv@crypt.org>2003-01-21 02:22:53 +0000
commit4f7806f3e19db049970d6c6265e5b956d1d7f74a (patch)
tree4c13292427c35be8ec700741495e4a718d08717c /lib
parent4addbd3b37ffede9a798950435a751b9834e67d0 (diff)
downloadperl-4f7806f3e19db049970d6c6265e5b956d1d7f74a.tar.gz
PATCH: perldoc in MAINT branch (probably unstable too)
Message-ID: <vzksmwb8q6q.fsf@minbar.devel.redhat.com> p4raw-id: //depot/perl@18534
Diffstat (limited to 'lib')
-rw-r--r--lib/Pod/Perldoc.pm10
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/Pod/Perldoc.pm b/lib/Pod/Perldoc.pm
index dd4f664425..931c415c1c 100644
--- a/lib/Pod/Perldoc.pm
+++ b/lib/Pod/Perldoc.pm
@@ -11,7 +11,7 @@ use File::Spec::Functions qw(catfile catdir splitdir);
use vars qw($VERSION @Pagers $Bindir $Pod2man
$Temp_Files_Created $Temp_File_Lifetime
);
-$VERSION = '3.07';
+$VERSION = '3.08';
#..........................................................................
BEGIN { # Make a DEBUG constant very first thing...
@@ -29,7 +29,7 @@ use Pod::Perldoc::GetOptsOO; # uses the DEBUG.
#..........................................................................
{ my $pager = $Config{'pager'};
- push @Pagers, $pager if -x (split /\\s+/, $pager)[0];
+ push @Pagers, $pager if -x (split /\s+/, $pager)[0];
}
$Bindir = $Config{'scriptdirexp'};
$Pod2man = "pod2man" . ( $Config{'versiononly'} ? $Config{'version'} : '' );
@@ -1626,10 +1626,8 @@ __END__
# is embedded in the perl installation tree.
#
#~~~~~~
-# Version 3.06: Sunday November 17 2002 -- 14:05:28
-# Sean M. Burke <sburke@cpan.org>
-# Added -V to report version
-# Restore -U as a no-op legacy switch.
+#
+# See ChangeLog in CPAN dist for Pod::Perldoc for later notes.
#
# Version 3.01: Sun Nov 10 21:38:09 MST 2002
# Sean M. Burke <sburke@cpan.org>