caller.pm typos
Gurusamy Sarathy [Sat, 12 Jun 1999 06:38:21 +0000 (06:38 +0000)]
p4raw-id: //depot/perl@3536

lib/caller.pm

index 7029212..91e67a1 100644 (file)
@@ -33,7 +33,7 @@ setting in the calling context.
 
 =cut
 
-my %bits = (
+my %bitmask = (
     # only HINT_UTF8 supported for now
     encoding => 0x8
 );
@@ -48,9 +48,7 @@ sub import {
     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];
     }
 }