diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-07-13 08:39:14 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-07-13 08:39:14 -0700 |
commit | e22e289db465f8d0c6edd99855cde6ed8d7ffa3c (patch) | |
tree | d323a98320a0ec6d44dae2593205b605a95f478b | |
parent | df5b44bdfe830f78553acaf5cac89006e6afed88 (diff) | |
download | perl-e22e289db465f8d0c6edd99855cde6ed8d7ffa3c.tar.gz |
perldelta for the SvIsCOW fix
-rw-r--r-- | pod/perldelta.pod | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod index 132822cd99..51e27a0e55 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -588,6 +588,16 @@ corrupt the glob, and unlocking a hash element that holds a copy-on-write scalar no longer causes modifications to that scalar to modify other scalars that were sharing the same string buffer. +=item * + +The C<SvIsCOW> C macro now returns false for read-only copies of typeglobs, +such as those created by: + + $hash{elem} = *foo; + Hash::Util::lock_value %hash, 'elem'; + +It used to return true. + =back =head1 Known Problems |