diff options
author | Xavier Noria <fxn@hashref.com> | 2006-01-12 00:11:49 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-01-11 22:41:04 +0000 |
commit | 22a7fd7aef660c4c4ff085df50df7d04d596c3ae (patch) | |
tree | 4797557ee0c3b3900cbc6e28a024f7f5f03ae728 /lib/PerlIO.pm | |
parent | 017a3ce5a449d7513ebed2de872ff4d966fd0b43 (diff) | |
download | perl-22a7fd7aef660c4c4ff085df50df7d04d596c3ae.tar.gz |
fix for :crlf example
Message-Id: <0F64C146-3A80-4FDF-8149-AFB35B3C4D3B@hashref.com>
plus bump its $VERSION
p4raw-id: //depot/perl@26796
Diffstat (limited to 'lib/PerlIO.pm')
-rw-r--r-- | lib/PerlIO.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/PerlIO.pm b/lib/PerlIO.pm index 60c73bc290..a1c3e0e885 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); |