diff options
author | Karl Williamson <khw@cpan.org> | 2014-10-27 21:02:38 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2014-11-04 09:35:10 -0700 |
commit | f809440b17ffdfe5eae57d5448d30f3ce6a72874 (patch) | |
tree | 6901944bde7e254a6ff2213ce4a85ae95c5f2f84 /regen/warnings.pl | |
parent | 1e8db68a2c3919cf9d6a13d441408c3b71cb7464 (diff) | |
download | perl-f809440b17ffdfe5eae57d5448d30f3ce6a72874.tar.gz |
Add 'locale' warning category
This category will be used in future commits for warnings that are
entirely because of locale issues.
Diffstat (limited to 'regen/warnings.pl')
-rw-r--r-- | regen/warnings.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/regen/warnings.pl b/regen/warnings.pl index 4e3a6245a4..96e6d067c6 100644 --- a/regen/warnings.pl +++ b/regen/warnings.pl @@ -108,6 +108,7 @@ my $tree = { 'missing' => [ 5.021, DEFAULT_OFF], 'redundant' => [ 5.021, DEFAULT_OFF], + 'locale' => [ 5.021, DEFAULT_ON], #'default' => [ 5.008, DEFAULT_ON ], }], @@ -477,7 +478,7 @@ read_only_bottom_close_and_rename($pm); __END__ package warnings; -our $VERSION = '1.28'; +our $VERSION = '1.29'; # Verify that we're called correctly so that warnings will work. # see also strict.pm. |