diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-06-12 11:32:44 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-06-12 11:32:44 +0000 |
commit | 18aba96f40a877297fb70961dbd4be7bc6f1c199 (patch) | |
tree | 03a71ea3c2790e248a560f157101c65b4b604862 /lib/PerlIO.pm | |
parent | 56c3d3d7f7f1b45cf341cc25dbc0fbde54dceab1 (diff) | |
download | perl-18aba96f40a877297fb70961dbd4be7bc6f1c199.tar.gz |
Further perlio doc tweaks.
p4raw-id: //depot/perl@19748
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 2a7f7e7194..5777679bfa 100644 --- a/lib/PerlIO.pm +++ b/lib/PerlIO.pm @@ -115,11 +115,11 @@ to a such a stream. =item raw The C<:raw> layer is I<defined> as being identical to calling -C<binmode($fh)> - the stream is made suitable for passing binary -data i.e. each byte is passed as-is. The stream will still be -buffered. Unlike earlier versions of perl C<:raw> is I<not> just the -inverse of C<:crlf> - other layers which would affect the binary nature of -the stream are also removed or disabled. +C<binmode($fh)> - the stream is made suitable for passing binary data +i.e. each byte is passed as-is. The stream will still be +buffered. Unlike in the earlier versions of Perl C<:raw> is I<not> +just the inverse of C<:crlf> - other layers which would affect the +binary nature of the stream are also removed or disabled. The implementation of C<:raw> is as a pseudo-layer which when "pushed" pops itself and then any layers which do not declare themselves as suitable |