summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2013-01-16 15:03:51 -0700
committerKarl Williamson <public@khwilliamson.com>2013-01-16 15:35:54 -0700
commit78181aa97421459079a91bb4f9e8939c1d56b6f4 (patch)
tree76e217c66fc1aa3761601e1c53a2062614b8f2c9
parent8f65b4cd1a923de18d21a3f1145e30941ae00e4e (diff)
downloadperl-78181aa97421459079a91bb4f9e8939c1d56b6f4.tar.gz
perldiag: Move an out-of-alphabetical_order entry
-rw-r--r--pod/perldiag.pod25
1 files changed, 13 insertions, 12 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod
index 2be0f791ae..ed6f7733a0 100644
--- a/pod/perldiag.pod
+++ b/pod/perldiag.pod
@@ -3795,6 +3795,19 @@ to even) byte length.
(P) The lexer got into a bad state while processing a case modifier.
+=item Parentheses missing around "%s" list
+
+(W parenthesis) You said something like
+
+ my $foo, $bar = @_;
+
+when you meant
+
+ my ($foo, $bar) = @_;
+
+Remember that "my", "our", "local" and "state" bind tighter than comma.
+
+
=item Parsing code internal error (%s)
(F) Parsing code supplied by an extension violated the parser's API in
@@ -3810,18 +3823,6 @@ the nesting limit is exceeded.
The <-- HERE shows whereabouts in the regular expression the problem was
discovered.
-=item Parentheses missing around "%s" list
-
-(W parenthesis) You said something like
-
- my $foo, $bar = @_;
-
-when you meant
-
- my ($foo, $bar) = @_;
-
-Remember that "my", "our", "local" and "state" bind tighter than comma.
-
=item C<-p> destination: %s
(F) An error occurred during the implicit output invoked by the C<-p>