summaryrefslogtreecommitdiff
path: root/warnings.h
diff options
context:
space:
mode:
authorMatt S Trout <mst@shadowcat.co.uk>2009-12-10 18:59:45 +0000
committerRafael Garcia-Suarez <rgs@consttype.org>2010-01-10 15:31:51 +0100
commit197afce1e759b5f0a1885a151064a83b27a7324e (patch)
tree686567d8804ef0633311e49ca4ff8b3edb4325a1 /warnings.h
parent9b5fd1d4b111acc07bae6fc8d66a179438294985 (diff)
downloadperl-197afce1e759b5f0a1885a151064a83b27a7324e.tar.gz
Move prototype parsing related warnings from the 'syntax' top level warnings category to a new 'illegalproto' subcategory.
Two warnings can be emitted when parsing a prototype - Illegal character in prototype for %s : %s Prototype after '%c' for %s : %s The first one is emitted when any invalid character is found, the latter when further prototype-type stuff is found after a slurpy entry (i.e. valid character but in such a place as to be a no-op, and therefore likely a bug). These warnings are distinct from those emitted when a sub is overwritten by one with a different prototype, and when calls are made to subroutines with prototypes - those are in the pre-existing sub-category 'prototype'. Since modules such as signatures.pm and Web::Simple only need to disable the warnings during parsing, I chose to add a new category containing only these. Moving these warnings into the 'prototype' sub-category would have forced authors to disable more warnings than they intended, and the entire raison d'etre of this patch is to allow the specific warnings involved to be disabled. In order to maintain compatibility with existing code, the new location needed to be a sub-category of 'syntax' - this means that no warnings 'syntax'; will continue to work as expected - even in cases like Web::Simple where all subcategories extant prior to this patch are re-enabled (this is another reason why a move into the 'protoype' category would not achieve the desired goal). The category name 'illegalproto' was chosen because the most common warning to encounter is the "Illegal character" one, and therefore 'illegalproto' while minorly inaccurate by ignoring the (relatively recent and unknown) second warning is an easy name to spot on an initial skim of perllexwarn and will behave as expected by also disabling the case of an unusual prototype that happens to look like a normal one. This patch updates pod/perllexwarn.pod, perldiag.pod and perl5113delta.pod to document the new category, toke.c and warnings.pl to create and implement the new category, and a new test t/op/protowarn.t that verifies the new behaviour in a number of cases. It also includes the files generated by regen.pl that are found in the repo - notably warnings.h and lib/warnings.pm.
Diffstat (limited to 'warnings.h')
-rw-r--r--warnings.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/warnings.h b/warnings.h
index 56b307912d..3ed9ecf56d 100644
--- a/warnings.h
+++ b/warnings.h
@@ -79,6 +79,7 @@
/* Warnings Categories added in Perl 5.011 */
#define WARN_IMPRECISION 46
+#define WARN_ILLEGALPROTO 47
#define WARNsize 12
#define WARN_ALLstring "\125\125\125\125\125\125\125\125\125\125\125\125"