From: Vincent Pit Date: Sat, 24 Aug 2013 17:41:19 +0000 (-0300) Subject: Replace uses of "$^V" by "$]" X-Git-Tag: v0.08~2 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FB-RecDeparse.git;a=commitdiff_plain;h=2a89a09b955be5161f63b93baf04d097f8534075;ds=sidebyside Replace uses of "$^V" by "$]" --- diff --git a/lib/B/RecDeparse.pm b/lib/B/RecDeparse.pm index 4df9dff..7395ebb 100644 --- a/lib/B/RecDeparse.pm +++ b/lib/B/RecDeparse.pm @@ -65,8 +65,8 @@ The C option expects an integer that specifies how many levels of recursi use constant { # p31268 made pp_entersub call single_delim FOOL_SINGLE_DELIM => - ($^V ge v5.9.5) - || ($^V lt v5.9.0 and $^V ge v5.8.9) + ("$]" >= 5.009_005) + || ("$]" < 5.009 and "$]" >= 5.008_009) || ($Config{perl_patchlevel} && $Config{perl_patchlevel} >= 31268) };