From: Rafael Garcia-Suarez Date: Mon, 12 Dec 2005 13:18:21 +0000 (+0000) Subject: Robin Houston points out a better way to replace X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=86bd3ff0f72010ac13cd4d60dd1f2acb3f324f47;p=p5sagit%2Fp5-mst-13.2.git Robin Houston points out a better way to replace the C construct. p4raw-id: //depot/perl@26328 --- diff --git a/pod/perl593delta.pod b/pod/perl593delta.pod index aec1398..1c0a8fb 100644 --- a/pod/perl593delta.pod +++ b/pod/perl593delta.pod @@ -20,10 +20,10 @@ a number of misparsing issues when a global C<_> subroutine is defined. This used to report whether the C package was created. Now it's always true, as a side-effect of a change to shrink the internal size of hash structures. Note that using C on hashes was deprecated -anyway. To achieve the same result, you can use the following -backwards-compatible idiom: +anyway. To achieve the same result, you can use a symbolic reference +instead (and this is backwards-compatible): - defined *foo::{HASH}->{'bar::'} + defined %{"foo::bar::"} =head1 Core Enhancements