diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-10-31 02:19:49 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-10-31 02:19:49 +0000 |
commit | 1768d7ebbd79c945a432bd18f2f9bed6d1a79356 (patch) | |
tree | 45fd01fd5766e85d54664e7356614489b9489dbb /lib | |
parent | d0e98d276e2cc7fdcdfbde4dabbc0843fb890ac7 (diff) | |
download | perl-1768d7ebbd79c945a432bd18f2f9bed6d1a79356.tar.gz |
More documentation for the encode pragma.
p4raw-id: //depot/perl@12785
Diffstat (limited to 'lib')
-rw-r--r-- | lib/encoding.pm | 2 | ||||
-rw-r--r-- | lib/open.pm | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/lib/encoding.pm b/lib/encoding.pm index 1addeb469b..1c9838e7aa 100644 --- a/lib/encoding.pm +++ b/lib/encoding.pm @@ -45,7 +45,7 @@ C<use encoding> matters, and it affects B<the whole script>. The C<\x..> and C<\0...> in regular expressions are not affected by this pragma. They probably should. -Also C<\N{...}> might become affected. +Also chr(), ord(), and C<\N{...}> might become affected. =head1 SEE ALSO diff --git a/lib/open.pm b/lib/open.pm index 3d7782fc8b..d8a6350c1d 100644 --- a/lib/open.pm +++ b/lib/open.pm @@ -156,6 +156,7 @@ level. =head1 SEE ALSO -L<perlfunc/"binmode">, L<perlfunc/"open">, L<perlunicode>, L<PerlIO> +L<perlfunc/"binmode">, L<perlfunc/"open">, L<perlunicode>, L<PerlIO>, +L<encoding> =cut |