diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-06-15 08:55:38 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-06-15 08:55:38 +0000 |
commit | cbb5380f3d6f458381b72ca4083fb97869df2fa5 (patch) | |
tree | dee3adba19086233dcbd1d05b98b3c61839e7c9b /lib/warnings.pm | |
parent | a096370a74e810dad2fc069cd86600e0bfb428a9 (diff) | |
download | perl-cbb5380f3d6f458381b72ca4083fb97869df2fa5.tar.gz |
Forgot to regen warnings
p4raw-id: //depot/perl@31386
Diffstat (limited to 'lib/warnings.pm')
-rw-r--r-- | lib/warnings.pm | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/lib/warnings.pm b/lib/warnings.pm index 06e25c58ad..060973642c 100644 --- a/lib/warnings.pm +++ b/lib/warnings.pm @@ -188,16 +188,11 @@ our %Offsets = ( 'untie' => 86, 'utf8' => 88, 'void' => 90, - - # Warnings Categories added in Perl 5.009 - - 'assertions' => 92, ); our %Bits = ( - 'all' => "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x15", # [0..46] + 'all' => "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x05", # [0..45] 'ambiguous' => "\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00", # [29] - 'assertions' => "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10", # [46] 'bareword' => "\x00\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00\x00", # [30] 'closed' => "\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", # [6] 'closure' => "\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", # [1] @@ -245,9 +240,8 @@ our %Bits = ( ); our %DeadBits = ( - 'all' => "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x2a", # [0..46] + 'all' => "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x0a", # [0..45] 'ambiguous' => "\x00\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00", # [29] - 'assertions' => "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x20", # [46] 'bareword' => "\x00\x00\x00\x00\x00\x00\x00\x20\x00\x00\x00\x00", # [30] 'closed' => "\x00\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", # [6] 'closure' => "\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", # [1] @@ -295,7 +289,7 @@ our %DeadBits = ( ); $NONE = "\0\0\0\0\0\0\0\0\0\0\0\0"; -$LAST_BIT = 94 ; +$LAST_BIT = 92 ; $BYTES = 12 ; $All = "" ; vec($All, $Offsets{'all'}, 2) = 3 ; |