diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-04-20 21:27:21 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-04-20 21:27:21 +0000 |
commit | f22a20695eae00da6d6892456727b75f7267e9ea (patch) | |
tree | bfdb21613dfb3bd8e9706a9e0336079078cde4d5 /lib/open.pm | |
parent | c6b05a01efa19bab6d6168ada898b9ae1e4177e2 (diff) | |
download | perl-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/open.pm')
-rw-r--r-- | lib/open.pm | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/open.pm b/lib/open.pm index c2eae57eb3..d384b419c8 100644 --- a/lib/open.pm +++ b/lib/open.pm @@ -1,6 +1,5 @@ package open; use warnings; -$open::hint_bits = 0x20000; # HINT_LOCALIZE_HH our $VERSION = '1.05'; @@ -57,7 +56,6 @@ sub import { my ($class,@args) = @_; croak("open: needs explicit list of PerlIO layers") unless @args; my $std; - $^H |= $open::hint_bits; my ($in,$out) = split(/\0/,(${^OPEN} || "\0"), -1); while (@args) { my $type = shift(@args); |