diff options
author | Rafael Garcia-Suarez <rgs@consttype.org> | 2010-01-12 07:52:53 +0100 |
---|---|---|
committer | Rafael Garcia-Suarez <rgs@consttype.org> | 2010-01-12 10:43:37 +0100 |
commit | cabbd591480901b0dcc086d0e0f21cb66b436b87 (patch) | |
tree | 2e34f0af8944f4c266dcbc027a5a6f407fa6b41f /pod/perl5113delta.pod | |
parent | 337e22410efaf1b6304c01a4e1e2e6fb089a7202 (diff) | |
download | perl-cabbd591480901b0dcc086d0e0f21cb66b436b87.tar.gz |
The "illegalproto" warning category is new in 5.11.4, not 5.11.3
Diffstat (limited to 'pod/perl5113delta.pod')
-rw-r--r-- | pod/perl5113delta.pod | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/pod/perl5113delta.pod b/pod/perl5113delta.pod index bee66972a6..9ef367d759 100644 --- a/pod/perl5113delta.pod +++ b/pod/perl5113delta.pod @@ -440,27 +440,8 @@ longer causes a bus error if run multiple times. [perl #71076] =item * -The two warnings : - - Illegal character in prototype for %s : %s - Prototype after '%c' for %s : %s - -have been moved from the C<syntax> top-level warnings category into a new -first-level category, C<illegalproto>. These two warnings are currently the -only ones emitted during parsing of an invalid/illegal prototype, so one -can now do - - no warnings 'illegalproto'; - -to suppress only those, but not other syntax-related warnings. Warnings where -prototypes are changed, ignored, or not met are still in the C<prototype> -category as before. (Matt S. Trout) - -=item * - C<split> now warns when called in void context - =item * C<printf>-style functions called with too few arguments will now issue the |