diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-10-31 02:32:35 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-10-31 02:32:35 +0000 |
commit | d521382bf0c8e54f9edce0c05df5bb707c9a49cb (patch) | |
tree | a78afd08460a941c14c9a7e6d48b9e80305600b3 /ext | |
parent | 1768d7ebbd79c945a432bd18f2f9bed6d1a79356 (diff) | |
download | perl-d521382bf0c8e54f9edce0c05df5bb707c9a49cb.tar.gz |
Clarification: use encoding cannot be used to
change the default encoding of "your whole script";
only the default encoding of the *data*. Also, it
seems that "use encoding" does not mix with "use utf8"
(a coredumping recursion ensues). Should not be a huge
problem since "use utf8" is pretty marginal nowadays.
p4raw-id: //depot/perl@12786
Diffstat (limited to 'ext')
-rw-r--r-- | ext/Encode/Encode.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Encode/Encode.pm b/ext/Encode/Encode.pm index 19827db07d..863022b18f 100644 --- a/ext/Encode/Encode.pm +++ b/ext/Encode/Encode.pm @@ -868,7 +868,7 @@ More examples: See L<PerlIO> for more information. See also L<encoding> for how to change the default encoding of the -script itself. +data in your script. =head1 Encoding How to ... |