summaryrefslogtreecommitdiff
path: root/lib/caller.pm
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-06-12 06:38:21 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-06-12 06:38:21 +0000
commit22b491d3a115964a8dde699347569bf3176f8b1a (patch)
tree3a093b9d82b1294f63bfcedda572c0cf5b06d31a /lib/caller.pm
parent43165c0500446fb6e4a036657f82b50e22c886e0 (diff)
downloadperl-22b491d3a115964a8dde699347569bf3176f8b1a.tar.gz
caller.pm typos
p4raw-id: //depot/perl@3536
Diffstat (limited to 'lib/caller.pm')
-rw-r--r--lib/caller.pm6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/caller.pm b/lib/caller.pm
index 70292122d7..91e67a1743 100644
--- a/lib/caller.pm
+++ b/lib/caller.pm
@@ -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];
}
}