From 759be45e415d104345e0d1e480818b429998925e Mon Sep 17 00:00:00 2001 From: David Golden Date: Tue, 18 Feb 2014 20:10:45 -0500 Subject: 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. --- lib/English.pm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lib/English.pm') 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; -- cgit v1.2.1