734417
From 915ceb2f33469eeffd28cfb81ca52a05e1301f15 Mon Sep 17 00:00:00 2001
734417
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
734417
Date: Fri, 14 Sep 2012 13:17:29 +0200
734417
Subject: [PATCH] Override the Pod::Simple::parse_file
734417
734417
This sets output_fh to STDOUT if it's not already set.
734417
This resolves CPANRT#77530 and RHBZ#826872 and is fixed in podlators-2.4.1.
734417
Ported to perl-5.14.2.
734417
---
734417
 cpan/podlators/lib/Pod/Man.pm  | 11 +++++++++++
734417
 cpan/podlators/lib/Pod/Text.pm | 11 +++++++++++
734417
 2 files changed, 22 insertions(+)
734417
734417
diff --git a/cpan/podlators/lib/Pod/Man.pm b/cpan/podlators/lib/Pod/Man.pm
734417
index 96f3fcc..ad5e5ac 100644
734417
--- a/cpan/podlators/lib/Pod/Man.pm
734417
+++ b/cpan/podlators/lib/Pod/Man.pm
734417
@@ -1302,6 +1302,17 @@ sub parse_from_filehandle {
734417
     $self->parse_from_file (@_);
734417
 }
734417
 
734417
+# Pod::Simple's parse_file doesn't set output_fh.  Wrap the call and do so
734417
+# ourself unless it was already set by the caller, since our documentation has
734417
+# always said that this should work.
734417
+sub parse_file {
734417
+    my ($self, $in) = @_;
734417
+    unless (defined $$self{output_fh}) {
734417
+        $self->output_fh (\*STDOUT);
734417
+    }
734417
+    return $self->SUPER::parse_file ($in);
734417
+}
734417
+
734417
 ##############################################################################
734417
 # Translation tables
734417
 ##############################################################################
734417
diff --git a/cpan/podlators/lib/Pod/Text.pm b/cpan/podlators/lib/Pod/Text.pm
734417
index cc02820..1a8b0bf 100644
734417
--- a/cpan/podlators/lib/Pod/Text.pm
734417
+++ b/cpan/podlators/lib/Pod/Text.pm
734417
@@ -679,6 +679,17 @@ sub parse_from_filehandle {
734417
     $self->parse_from_file (@_);
734417
 }
734417
 
734417
+# Pod::Simple's parse_file doesn't set output_fh.  Wrap the call and do so
734417
+# ourself unless it was already set by the caller, since our documentation has
734417
+# always said that this should work.
734417
+sub parse_file {
734417
+    my ($self, $in) = @_;
734417
+    unless (defined $$self{output_fh}) {
734417
+        $self->output_fh (\*STDOUT);
734417
+    }
734417
+    return $self->SUPER::parse_file ($in);
734417
+}
734417
+
734417
 ##############################################################################
734417
 # Module return value and documentation
734417
 ##############################################################################
734417
-- 
734417
1.7.11.4
734417