From: Dave Rolsky Date: Mon, 17 Dec 2012 21:31:26 +0000 (-0600) Subject: Clarify hash assignment bug fix in list context X-Git-Tag: upstream/5.20.0~4415 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3459a26e7c37af7fd4c309df215cf222d2d3de65;p=platform%2Fupstream%2Fperl.git Clarify hash assignment bug fix in list context --- diff --git a/pod/perldelta.pod b/pod/perldelta.pod index 3415403..3f0edff 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -376,7 +376,8 @@ C<(%h) = ({})>, "Reference found where even-sized list expected". =item - -The return value of C<%h = (1, 1, 1)> in list context was wrong. +The return value of C<%h = (1, 1, 1)> in list context was wrong. Previously +this would return C<(1, undef, 1)>, not it returns C<(1, undef)>. =item -