diff options
author | David Golden <dagolden@cpan.org> | 2014-02-18 20:10:45 -0500 |
---|---|---|
committer | David Golden <dagolden@cpan.org> | 2014-02-18 20:10:47 -0500 |
commit | 759be45e415d104345e0d1e480818b429998925e (patch) | |
tree | 258176eeedb66e169916d03f1c8742250d3bad23 /lib/English.t | |
parent | f33104554559fbfcadf9819544fc60f7d290b122 (diff) | |
download | perl-759be45e415d104345e0d1e480818b429998925e.tar.gz |
restore $PERL_OLD_VERSION to English.pm
In the dark ages, when $^V replaced $] for $PERL_VERSION,
$PERL_OLD_VERSION was added as a comment in the list of deprecated
variable. Since $] is *not* deprecated, this commit restores it.
Diffstat (limited to 'lib/English.t')
-rw-r--r-- | lib/English.t | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/English.t b/lib/English.t index bc0a5da76e..f23dd84b24 100644 --- a/lib/English.t +++ b/lib/English.t @@ -87,6 +87,7 @@ is( $PROGRAM_NAME, $0, '$PROGRAM_NAME' ); is( $BASETIME, $^T, '$BASETIME' ); is( $PERL_VERSION, $^V, '$PERL_VERSION' ); +is( $OLD_PERL_VERSION, $], '$OLD_PERL_VERSION' ); is( $DEBUGGING, $^D, '$DEBUGGING' ); is( $WARNING, 0, '$WARNING' ); |