diff options
Diffstat (limited to 'Master/tlpkg/tlperl/lib/Scalar')
-rw-r--r-- | Master/tlpkg/tlperl/lib/Scalar/Util.pm | 2 | ||||
-rw-r--r-- | Master/tlpkg/tlperl/lib/Scalar/Util/PP.pm | 19 |
2 files changed, 10 insertions, 11 deletions
diff --git a/Master/tlpkg/tlperl/lib/Scalar/Util.pm b/Master/tlpkg/tlperl/lib/Scalar/Util.pm index 24f146f2b3f..24138ca4d85 100644 --- a/Master/tlpkg/tlperl/lib/Scalar/Util.pm +++ b/Master/tlpkg/tlperl/lib/Scalar/Util.pm @@ -13,7 +13,7 @@ require List::Util; # List::Util loads the XS @ISA = qw(Exporter); @EXPORT_OK = qw(blessed dualvar reftype weaken isweak tainted readonly openhandle refaddr isvstring looks_like_number set_prototype); -$VERSION = "1.22"; +$VERSION = "1.23"; $VERSION = eval $VERSION; unless (defined &dualvar) { diff --git a/Master/tlpkg/tlperl/lib/Scalar/Util/PP.pm b/Master/tlpkg/tlperl/lib/Scalar/Util/PP.pm index e94fe86f21c..7850e1b812d 100644 --- a/Master/tlpkg/tlperl/lib/Scalar/Util/PP.pm +++ b/Master/tlpkg/tlperl/lib/Scalar/Util/PP.pm @@ -16,7 +16,7 @@ use B qw(svref_2object); @ISA = qw(Exporter); @EXPORT = qw(blessed reftype tainted readonly refaddr looks_like_number); -$VERSION = "1.22"; +$VERSION = "1.23"; $VERSION = eval $VERSION; sub blessed ($) { @@ -41,20 +41,19 @@ sub refaddr($) { $addr =~ /0x(\w+)/; local $^W; + no warnings 'portable'; hex($1); } { my %tmap = qw( - B::HV HASH - B::AV ARRAY - B::CV CODE - B::IO IO - B::NULL SCALAR - B::NV SCALAR - B::PV SCALAR - B::GV GLOB - B::RV REF + B::NULL SCALAR + + B::HV HASH + B::AV ARRAY + B::CV CODE + B::IO IO + B::GV GLOB B::REGEXP REGEXP ); |