diff options
author | Ricardo Signes <rjbs@cpan.org> | 2013-05-09 09:14:39 -0400 |
---|---|---|
committer | Ricardo Signes <rjbs@cpan.org> | 2013-05-09 09:47:40 -0400 |
commit | be12dd2250a1620a522d5395f662f3baf8d8cfab (patch) | |
tree | 8ae219c4904b5fbcb230ab40e6c8a6ceca3930f3 /pod | |
parent | ec985017e9c79e63d5cb601e51682ea0c26106be (diff) | |
download | perl-be12dd2250a1620a522d5395f662f3baf8d8cfab.tar.gz |
perldelta: use UTF-8 when we mean UTF-8
most of these changes from Nicholas Clark
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perldelta.pod | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod index 3641fedda1..1c3eed206d 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -1587,7 +1587,7 @@ C<mg_length> has been deprecated. C<sv_len> now always returns a byte count and C<sv_len_utf8> a character count. Previously, C<sv_len> and C<sv_len_utf8> were both buggy and would sometimes returns bytes and sometimes characters. C<sv_len_utf8> no longer -assumes that its argument is in UTF8. Neither of these creates UTF8 caches +assumes that its argument is in UTF-8. Neither of these creates UTF-8 caches for tied or overloaded values or for non-PVs any more. =item * @@ -1940,7 +1940,7 @@ broken when v-strings were added in Perl 5.6. [perl #56880] C<length>, C<pos>, C<substr> and C<sprintf> could be confused by ties, overloading, references and typeglobs if the stringification of such -changed the internal representation to or from UTF8. [perl #114410] +changed the internal representation to or from UTF-8. [perl #114410] =item * @@ -2073,14 +2073,14 @@ omitted. =item * -Reset the utf8 position cache when accessing magical variables to avoid the -string buffer and the utf8 position cache getting out of sync +Reset the UTF-8 position cache when accessing magical variables to avoid the +string buffer and the UTF-8 position cache getting out of sync [perl #114410]. =item * -Various cases of get magic being called twice for magical utf8 strings have been -fixed. +Various cases of get magic being called twice for magical UTF-8 +strings have been fixed. =item * @@ -2912,8 +2912,8 @@ non-objects. =item * -C<$byte_overload .= $utf8> no longer results in doubly-encoded UTF8 if the -left-hand scalar happened to have produced a UTF8 string the last time +C<$byte_overload .= $utf8> no longer results in doubly-encoded UTF-8 if the +left-hand scalar happened to have produced a UTF-8 string the last time overloading was invoked. =item * |