summaryrefslogtreecommitdiff
path: root/lib/English.pm
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-02-21 21:10:26 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-02-21 21:10:26 +0000
commit44dcb63b0bb49fa80a224080c0601a2af7b94275 (patch)
treed792893c44395e342cddd5c15c89529d3f7fef11 /lib/English.pm
parentf6c8478cc6cfc17dcb81770ef59a5e1c39269012 (diff)
downloadperl-44dcb63b0bb49fa80a224080c0601a2af7b94275.tar.gz
remove dual-valueness of v-strings (i.e., they are pure strings
now); avoid the word "tuple" to describe strings represented as character ordinals; usurp $PERL_VERSION for $^V as suggested by Larry, deprecate $] ; adjust the documentation and testsuite accordingly p4raw-id: //depot/perl@5186
Diffstat (limited to 'lib/English.pm')
-rw-r--r--lib/English.pm5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/English.pm b/lib/English.pm
index 2953a80af9..f6e3ec0021 100644
--- a/lib/English.pm
+++ b/lib/English.pm
@@ -87,7 +87,6 @@ sub import {
*EGID
*PROGRAM_NAME
*PERL_VERSION
- *PERL_VERSION_TUPLE
*ACCUMULATOR
*DEBUGGING
*SYSTEM_FD_MAX
@@ -167,8 +166,7 @@ sub import {
# Internals.
- *PERL_VERSION = *] ;
- *PERL_VERSION_TUPLE = *^V ;
+ *PERL_VERSION = *^V ;
*ACCUMULATOR = *^A ;
*COMPILING = *^C ;
*DEBUGGING = *^D ;
@@ -187,5 +185,6 @@ sub import {
# *ARRAY_BASE = *[ ;
# *OFMT = *# ;
# *MULTILINE_MATCHING = ** ;
+# *OLD_PERL_VERSION = *] ;
1;