diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-05-28 15:03:35 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-05-28 15:03:35 +0000 |
commit | ec28694ccbbeb16b6069c4b363ee55512b83376a (patch) | |
tree | a7f50654b525bb01b19fd27b4d28bf7e068c6fbf /lib/PerlIO.pm | |
parent | 0e25c5fd6896160f4115f7b66a6914d9c01ef7df (diff) | |
download | perl-ec28694ccbbeb16b6069c4b363ee55512b83376a.tar.gz |
Add a test for PerlIO.
(I probably got the crlf/raw thing wrong for clrfy platforms...)
p4raw-id: //depot/perl@10247
Diffstat (limited to 'lib/PerlIO.pm')
-rw-r--r-- | lib/PerlIO.pm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/PerlIO.pm b/lib/PerlIO.pm index 148a5a8de7..d52d58b41a 100644 --- a/lib/PerlIO.pm +++ b/lib/PerlIO.pm @@ -39,8 +39,8 @@ PerlIO - On demand loader for PerlIO layers and root of PerlIO::* name space =head1 DESCRIPTION -When an undefined layer 'foo' is encountered in an C<open> or C<binmode> layer -specification then C code performs the equivalent of: +When an undefined layer 'foo' is encountered in an C<open> or +C<binmode> layer specification then C code performs the equivalent of: use PerlIO 'foo'; @@ -99,7 +99,7 @@ and then read it back in. =item raw A pseudo-layer which performs two functions (which is messy, but -necessary to maintain compatibility with non-PerlIO builds of perl +necessary to maintain compatibility with non-PerlIO builds of Perl and their way things have been documented elsewhere). Firstly it forces the file handle to be considered binary at that @@ -118,8 +118,8 @@ which would interfere with binary nature of the stream. =head2 Defaults and how to override them -If the platform is MS-DOS like and normally does CRLF to "\n" translation -for text files then the default layers are : +If the platform is MS-DOS like and normally does CRLF to "\n" +translation for text files then the default layers are : unix crlf |