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.pm | |
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.pm')
-rw-r--r-- | lib/English.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/English.pm b/lib/English.pm index 6560f5fdb9..efd61ff89f 100644 --- a/lib/English.pm +++ b/lib/English.pm @@ -1,6 +1,6 @@ package English; -our $VERSION = '1.08'; +our $VERSION = '1.09'; require Exporter; @ISA = qw(Exporter); @@ -119,6 +119,7 @@ sub import { *EGID *PROGRAM_NAME *PERL_VERSION + *OLD_PERL_VERSION *ACCUMULATOR *COMPILING *DEBUGGING @@ -214,6 +215,7 @@ sub import { # Internals. *PERL_VERSION = *^V ; + *OLD_PERL_VERSION = *] ; *ACCUMULATOR = *^A ; *COMPILING = *^C ; *DEBUGGING = *^D ; @@ -231,6 +233,5 @@ sub import { # *ARRAY_BASE = *[ ; # *OFMT = *# ; -# *OLD_PERL_VERSION = *] ; 1; |