diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-04 21:55:03 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-04 21:55:03 +0000 |
commit | 6ae452c6b4a9f0f8b40735d19b10d6f5bcfb6a11 (patch) | |
tree | 8c44a139ca3d1e950415b5229fd41ee183f96f20 /lib/utf8.pm | |
parent | a88ef58f77bf61414cf7464b32ab1c9604510702 (diff) | |
download | perl-6ae452c6b4a9f0f8b40735d19b10d6f5bcfb6a11.tar.gz |
make hints available via globals in the respective pragmas to
avoid duplicating the constants everywhere
p4raw-id: //depot/perl@5527
Diffstat (limited to 'lib/utf8.pm')
-rw-r--r-- | lib/utf8.pm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/utf8.pm b/lib/utf8.pm index 3098fe21bd..c362a1c516 100644 --- a/lib/utf8.pm +++ b/lib/utf8.pm @@ -1,12 +1,14 @@ package utf8; +$utf8::hint_bits = 0x00800000; + sub import { - $^H |= 0x00800000; + $^H |= $utf8::hint_bits; $enc{caller()} = $_[1] if $_[1]; } sub unimport { - $^H &= ~0x00800000; + $^H &= ~$utf8::hint_bits; } sub AUTOLOAD { |