diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-07-26 13:02:45 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-07-26 13:02:45 -0700 |
commit | db147d7ee1c1aca547b1d63ef7141e56821a3ae2 (patch) | |
tree | 73afb6a8ad94781a25cdbe387c10b9264e92a95f /dist | |
parent | d3dc34aeee959176a2fa7d0319ce9d9d23e584c3 (diff) | |
download | perl-db147d7ee1c1aca547b1d63ef7141e56821a3ae2.tar.gz |
Oops! Update B::Deparse for the (l)stat proto change
Diffstat (limited to 'dist')
-rw-r--r-- | dist/B-Deparse/Deparse.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dist/B-Deparse/Deparse.pm b/dist/B-Deparse/Deparse.pm index 848b2fa7a3..08129933a5 100644 --- a/dist/B-Deparse/Deparse.pm +++ b/dist/B-Deparse/Deparse.pm @@ -26,7 +26,7 @@ use B qw(class main_root main_start main_cv svref_2object opnumber perlstring ($] < 5.009 ? 'PMf_SKIPWHITE' : qw(RXf_SKIPWHITE)), ($] < 5.011 ? 'CVf_LOCKED' : 'OPpREVERSE_INPLACE'), ($] < 5.013 ? () : 'PMf_NONDESTRUCT'); -$VERSION = "1.06"; +$VERSION = "1.07"; use strict; use vars qw/$AUTOLOAD/; use warnings (); @@ -1553,7 +1553,7 @@ sub keyword { : "CORE::$name"; } if ( - $name !~ /^(?:chom?p|exec|system)\z/ + $name !~ /^(?:chom?p|exec|system|l?stat)\z/ && !defined eval{prototype "CORE::$name"} ) { return $name } if ( |