summaryrefslogtreecommitdiff
path: root/lib/Pod
diff options
context:
space:
mode:
authorSteve Hay <SteveHay@planit.com>2008-11-07 08:49:25 +0000
committerSteve Hay <SteveHay@planit.com>2008-11-07 08:49:25 +0000
commit2dab2cc13c97faef9e98675f369062fe31fb47d6 (patch)
treead2473236c0245e7a2a83abf9f33e3ab5edbad98 /lib/Pod
parent9f2f055aa1e8c86d97b5ea42473ab1747f518f3a (diff)
downloadperl-2dab2cc13c97faef9e98675f369062fe31fb47d6.tar.gz
Fix new test (just added by podlators upgrade) on Win32, at least
p4raw-id: //depot/perl@34759
Diffstat (limited to 'lib/Pod')
-rw-r--r--lib/Pod/Text.pm2
-rw-r--r--lib/Pod/t/text-encoding.t1
2 files changed, 2 insertions, 1 deletions
diff --git a/lib/Pod/Text.pm b/lib/Pod/Text.pm
index f363303869..fa1fd57263 100644
--- a/lib/Pod/Text.pm
+++ b/lib/Pod/Text.pm
@@ -37,7 +37,7 @@ use Pod::Simple ();
# We have to export pod2text for backward compatibility.
@EXPORT = qw(pod2text);
-$VERSION = '3.12';
+$VERSION = '3.12_01';
##############################################################################
# Initialization
diff --git a/lib/Pod/t/text-encoding.t b/lib/Pod/t/text-encoding.t
index 2d624808bf..c803cff1f9 100644
--- a/lib/Pod/t/text-encoding.t
+++ b/lib/Pod/t/text-encoding.t
@@ -53,6 +53,7 @@ while (<DATA>) {
}
close TMP;
open (OUT, '> out.tmp') or die "Cannot create out.tmp: $!\n";
+ eval { binmode (\*OUT, ':raw') };
$parser->parse_from_file ('tmp.pod', \*OUT);
close OUT;
open (TMP, 'out.tmp') or die "Cannot open out.tmp: $!\n";