diff options
Diffstat (limited to 'contrib/perl5/lib/locale.pm')
-rw-r--r-- | contrib/perl5/lib/locale.pm | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/contrib/perl5/lib/locale.pm b/contrib/perl5/lib/locale.pm index 48213ab86cef..6314aca59e57 100644 --- a/contrib/perl5/lib/locale.pm +++ b/contrib/perl5/lib/locale.pm @@ -20,14 +20,19 @@ locales for built-in operations (LC_CTYPE for regular expressions, and LC_COLLATE for string comparison). Each "use locale" or "no locale" affects statements to the end of the enclosing BLOCK. +See L<perllocale> for more detailed information on how Perl supports +locales. + =cut +$locale::hint_bits = 0x800; + sub import { - $^H |= 0x800; + $^H |= $locale::hint_bits; } sub unimport { - $^H &= ~0x800; + $^H &= ~$locale::hint_bits; } 1; |