In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/3707930867f717d57fcf64228b8b1fe57e88716a?hp=f853e70ac6fb4770dfc9ea44704df8480e41b033>
- Log ----------------------------------------------------------------- commit 3707930867f717d57fcf64228b8b1fe57e88716a Author: Father Chrysostomos <[email protected]> Date: Fri Dec 10 16:17:09 2010 -0800 perldelta for [perl #72090] ----------------------------------------------------------------------- Summary of changes: pod/perldelta.pod | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/pod/perldelta.pod b/pod/perldelta.pod index 675446e..006aad8 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -606,6 +606,14 @@ C<state> can now be used with attributes. It used to mean the same thing as C<my> if attributes were present L<[perl #68658]|http://rt.perl.org/rt3/Public/Bug/Display.html?id=68658>. +=item * + +Expressions like C<< @$a > 3 >> no longer cause C<$a> to be mentioned in +the "Use of uninitialized value in numeric gt" warning when C<$a> is +undefined (since it is not part of the C<E<gt>> expression, but the operand +of the C<@>) +L<[perl #72090]|http://rt.perl.org/rt3/Public/Bug/Display.html?id=72090>. + =back =head1 Known Problems -- Perl5 Master Repository
