From: Steve Hay Date: Mon, 16 Sep 2013 19:57:31 +0000 (+0100) Subject: perldelta - Remove spurious New Errors entries X-Git-Tag: upstream/5.20.0~1810 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ed5950c0a86ad62e2c4f6e6835244f17ae68c6d4;p=platform%2Fupstream%2Fperl.git perldelta - Remove spurious New Errors entries Spotted by Father C - These are not new errors. They are just listed with explicit ‘exists’ and ‘delete’ now (and alphabetised under the same) rather than %s. --- diff --git a/pod/perldelta.pod b/pod/perldelta.pod index 36b2508..cd182e2 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -686,38 +686,6 @@ Lvalue hash slice, use hash slice|perldiag/"delete (F) You used key/value hash slice syntax (C<%hash{...}>) as the argument to C. You probably meant C<@hash{...}> with an @ symbol instead. -=item * - -L - -(F) The argument to C must be either a hash or array element, such as: - - $foo{$bar} - $ref->{"susie"}[12] - -or a hash or array slice, such as: - - @foo[$bar, $baz, $xyzzy] - @{$ref->[12]}{"susie", "queue"} - -=item * - -L - -(F) The argument to C must be a hash or array element or a subroutine -with an ampersand, such as: - - $foo{$bar} - $ref->{"susie"}[12] - &do_something - -=item * - -L - -(F) The argument to C for C must be a subroutine name, and -not a subroutine call. C will generate this error. - =back =head3 New Warnings