diff options
Diffstat (limited to 'Master/tlpkg/tlperl/lib/Pod/Perldoc/ToText.pm')
-rw-r--r-- | Master/tlpkg/tlperl/lib/Pod/Perldoc/ToText.pm | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/Master/tlpkg/tlperl/lib/Pod/Perldoc/ToText.pm b/Master/tlpkg/tlperl/lib/Pod/Perldoc/ToText.pm index 7d1784cd59a..0e4e2dacf4d 100644 --- a/Master/tlpkg/tlperl/lib/Pod/Perldoc/ToText.pm +++ b/Master/tlpkg/tlperl/lib/Pod/Perldoc/ToText.pm @@ -1,10 +1,11 @@ - -require 5; package Pod::Perldoc::ToText; use strict; use warnings; -use base qw(Pod::Perldoc::BaseTo); +use vars qw($VERSION); +$VERSION = '3.17'; + +use parent qw(Pod::Perldoc::BaseTo); sub is_pageable { 1 } sub write_with_binmode { 0 } @@ -23,13 +24,13 @@ sub new { return bless {}, ref($_[0]) || $_[0] } sub parse_from_file { my $self = shift; - + my @options = map {; $_, $self->{$_} } grep !m/^_/s, keys %$self ; - + defined(&Pod::Perldoc::DEBUG) and Pod::Perldoc::DEBUG() and print "About to call new Pod::Text ", @@ -85,10 +86,12 @@ merchantability or fitness for a particular purpose. =head1 AUTHOR -Current maintainer: Adriano R. Ferreira <ferreira@cpan.org> +Current maintainer: Mark Allen C<< <mallen@cpan.org> >> Past contributions from: -Sean M. Burke <sburke@cpan.org> +brian d foy C<< <bdfoy@cpan.org> >> +Adriano R. Ferreira C<< <ferreira@cpan.org> >>, +Sean M. Burke C<< <sburke@cpan.org> >> =cut |