diff options
author | Steve Peters <steve@fisharerojo.org> | 2006-01-28 17:25:03 +0000 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2006-01-28 17:25:03 +0000 |
commit | 8f20275887caedc32e165a1aa9890f861054dd9a (patch) | |
tree | 942107be35d88adc0ba6f69d7c84bc907384ec9a /pod/pod2man.PL | |
parent | 2352541471cd5a156f21e29f93b7167afe87acb2 (diff) | |
download | perl-8f20275887caedc32e165a1aa9890f861054dd9a.tar.gz |
Upgrade to podlators-2.0.2
p4raw-id: //depot/perl@26988
Diffstat (limited to 'pod/pod2man.PL')
-rw-r--r-- | pod/pod2man.PL | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pod/pod2man.PL b/pod/pod2man.PL index 5a78c012ea..9a8414ad92 100644 --- a/pod/pod2man.PL +++ b/pod/pod2man.PL @@ -36,9 +36,9 @@ $Config{startperl} print OUT <<'!NO!SUBS!'; # pod2man -- Convert POD data to formatted *roff input. -# $Id: pod2man.PL,v 1.14 2004/12/31 20:39:30 eagle Exp $ +# $Id: pod2man.PL,v 1.16 2006-01-21 01:53:55 eagle Exp $ # -# Copyright 1999, 2000, 2001 by Russ Allbery <rra@stanford.edu> +# Copyright 1999, 2000, 2001, 2004, 2006 by Russ Allbery <rra@stanford.edu> # # This program is free software; you may redistribute it and/or modify it # under the same terms as Perl itself. @@ -84,9 +84,9 @@ delete $options{lax}; # Initialize and run the formatter, pulling a pair of input and output off at # a time. +my $parser = Pod::Man->new (%options); my @files; do { - my $parser = Pod::Man->new (%options); @files = splice (@ARGV, 0, 2); print " $files[1]\n" if $verbose; $parser->parse_from_file (@files); @@ -537,7 +537,7 @@ page, are taken from the B<pod2man> documentation by Tom. =head1 COPYRIGHT AND LICENSE -Copyright 1999, 2000, 2001 by Russ Allbery <rra@stanford.edu>. +Copyright 1999, 2000, 2001, 2004, 2006 by Russ Allbery <rra@stanford.edu>. This program is free software; you may redistribute it and/or modify it under the same terms as Perl itself. |