summaryrefslogtreecommitdiff
path: root/lib/charnames.pm
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2006-04-20 21:27:21 +0000
committerNicholas Clark <nick@ccl4.org>2006-04-20 21:27:21 +0000
commitf22a20695eae00da6d6892456727b75f7267e9ea (patch)
treebfdb21613dfb3bd8e9706a9e0336079078cde4d5 /lib/charnames.pm
parentc6b05a01efa19bab6d6168ada898b9ae1e4177e2 (diff)
downloadperl-f22a20695eae00da6d6892456727b75f7267e9ea.tar.gz
Remove the last traces of explicitly setting HINT_LOCALIZE_HH from
perl modules. p4raw-id: //depot/perl@27927
Diffstat (limited to 'lib/charnames.pm')
-rw-r--r--lib/charnames.pm4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/charnames.pm b/lib/charnames.pm
index 54f5179acd..00faa6902c 100644
--- a/lib/charnames.pm
+++ b/lib/charnames.pm
@@ -5,7 +5,6 @@ use File::Spec;
our $VERSION = '1.05';
use bytes (); # for $bytes::hint_bits
-$charnames::hint_bits = 0x20000; # HINT_LOCALIZE_HH
my %alias1 = (
# Icky 3.2 names with parentheses.
@@ -192,7 +191,6 @@ sub import
if (not @_) {
carp("`use charnames' needs explicit imports list");
}
- $^H |= $charnames::hint_bits;
$^H{charnames} = \&charnames ;
##
@@ -393,10 +391,8 @@ hardwired into F<charnames.pm>. A module can install custom
translations (inside the scope which C<use>s the module) with the
following magic incantation:
- use charnames (); # for $charnames::hint_bits
sub import {
shift;
- $^H |= $charnames::hint_bits;
$^H{charnames} = \&translator;
}