From: Xavier Noria Date: Wed, 11 Jan 2006 23:11:49 +0000 (+0100) Subject: fix for :crlf example X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=22a7fd7aef660c4c4ff085df50df7d04d596c3ae;p=p5sagit%2Fp5-mst-13.2.git fix for :crlf example Message-Id: <0F64C146-3A80-4FDF-8149-AFB35B3C4D3B@hashref.com> plus bump its $VERSION p4raw-id: //depot/perl@26796 --- diff --git a/lib/PerlIO.pm b/lib/PerlIO.pm index 60c73bc..a1c3e0e 100644 --- a/lib/PerlIO.pm +++ b/lib/PerlIO.pm @@ -1,6 +1,6 @@ package PerlIO; -our $VERSION = '1.03'; +our $VERSION = '1.04'; # Map layer name to package that defines it our %alias; @@ -35,7 +35,7 @@ PerlIO - On demand loader for PerlIO layers and root of PerlIO::* name space =head1 SYNOPSIS - open($fh,"<:crlf", "my.txt"); # portably open a text file for reading + open($fh,"<:crlf", "my.txt"); # support native and Windows text files open($fh,"<","his.jpg"); # portably open a binary file for reading binmode($fh);