diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-04 01:09:37 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-04 01:09:37 +0000 |
commit | e194c14e895d209252cde093bbc79234adb5b8de (patch) | |
tree | 2d798143f5827d674263004fe8290deafc33fb03 | |
parent | 931366208db0af9fa4f551c49093e1b8d014a9e1 (diff) | |
download | perl-e194c14e895d209252cde093bbc79234adb5b8de.tar.gz |
byte.pm and HINT_BYTE don't match (0x8, not 0x10!)
p4raw-id: //depot/perl@4969
-rw-r--r-- | lib/byte.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/byte.pm b/lib/byte.pm index 33ffb769e8..569fa660e0 100644 --- a/lib/byte.pm +++ b/lib/byte.pm @@ -1,11 +1,11 @@ package byte; sub import { - $^H |= 0x00000010; + $^H |= 0x00000008; } sub unimport { - $^H &= ~0x00000010; + $^H &= ~0x00000008; } sub AUTOLOAD { |