summaryrefslogtreecommitdiff
path: root/pod/perl5177delta.pod
diff options
context:
space:
mode:
authorSmylers <Smylers@stripey.com>2013-01-26 16:19:06 -0700
committerKarl Williamson <public@khwilliamson.com>2013-01-26 16:36:10 -0700
commit7a4cf48471dd66fc32492d8327d413a5e2a4cac8 (patch)
tree5e9de517e1ed5fac74e64bd1eea99d8b379b3d6f /pod/perl5177delta.pod
parentaa384da934015c4025dfa0a94ae78b98a4682703 (diff)
downloadperl-7a4cf48471dd66fc32492d8327d413a5e2a4cac8.tar.gz
PATCH [perl 116252]: Correct nested pod bullets in perl5177delta.pod
Diffstat (limited to 'pod/perl5177delta.pod')
-rw-r--r--pod/perl5177delta.pod10
1 files changed, 5 insertions, 5 deletions
diff --git a/pod/perl5177delta.pod b/pod/perl5177delta.pod
index 78d6ff3099..70129cdd91 100644
--- a/pod/perl5177delta.pod
+++ b/pod/perl5177delta.pod
@@ -365,23 +365,23 @@ _charnames from loading via C<$INC{'_charnames.pm'}++>.
A number of bugs related to assigning a list to hash have been fixed. Many of
these involve lists with repeated keys like C<(1, 1, 1, 1)>.
-=over 8
+=over 4
-=item -
+=item *
The expression C<scalar(%h = (1, 1, 1, 1))> now returns C<4>, not C<2>.
-=item -
+=item *
The return value of C<%h = (1, 1, 1)> in list context was wrong. Previously
this would return C<(1, undef, 1)>, now it returns C<(1, undef)>.
-=item -
+=item *
Perl now issues the same warning on C<($s, %h) = (1, {})> as it does for
C<(%h) = ({})>, "Reference found where even-sized list expected".
-=item -
+=item *
A number of additional edge cases in list assignment to hashes were
corrected. For more details see commit 23b7025ebc.