summaryrefslogtreecommitdiff
path: root/lib/locale.pm
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-03-04 21:55:03 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-03-04 21:55:03 +0000
commitd5448623582779336009dd8bafd91e2a4ca7c599 (patch)
tree8c44a139ca3d1e950415b5229fd41ee183f96f20 /lib/locale.pm
parentc0961f019733ac906a65ac3bd8f2f21194179c1e (diff)
downloadperl-d5448623582779336009dd8bafd91e2a4ca7c599.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/locale.pm')
-rw-r--r--lib/locale.pm6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/locale.pm b/lib/locale.pm
index 44e88f48c6..6314aca59e 100644
--- a/lib/locale.pm
+++ b/lib/locale.pm
@@ -25,12 +25,14 @@ locales.
=cut
+$locale::hint_bits = 0x800;
+
sub import {
- $^H |= 0x800;
+ $^H |= $locale::hint_bits;
}
sub unimport {
- $^H &= ~0x800;
+ $^H &= ~$locale::hint_bits;
}
1;