p4raw-id: //depot/perl@3536
=cut
-my %bits = (
+my %bitmask = (
# only HINT_UTF8 supported for now
encoding => 0x8
);
shift;
my @cxt = caller(3);
if (@cxt and $cxt[7]) { # was our parent require-d?
- #warn "hints was $^H\n";
- $^H |= bits(@_) | $cxt[8];
- #warn "hints now $^H\n";
+ $^H |= bits(@_) & $cxt[8];
}
}