avoid MakeMaker setting $^W=1
[p5sagit/p5-mst-13.2.git] / lib / English.pm
CommitLineData
8990e307 1package English;
2
3require Exporter;
4@ISA = (Exporter);
5
f06db76b 6=head1 NAME
7
8English - use nice English (or awk) names for ugly punctuation variables
9
10=head1 SYNOPSIS
11
12 use English;
13 ...
14 if ($ERRNO =~ /denied/) { ... }
15
16=head1 DESCRIPTION
17
18This module provides aliases for the built-in variables whose
19names no one seems to like to read. Variables with side-effects
20which get triggered just by accessing them (like $0) will still
21be affected.
22
23For those variables that have an B<awk> version, both long
24and short English alternatives are provided. For example,
25the C<$/> variable can be referred to either $RS or
26$INPUT_RECORD_SEPARATOR if you are using the English module.
27
28See L<perlvar> for a complete list of these.
29
f2545c07 30=head1 BUGS
31
32This module provokes sizeable inefficiencies for regular expressions,
33due to unfortunate implementation details. If performance matters,
34consider avoiding English.
35
f06db76b 36=cut
37
db376a24 38no warnings;
748a9306 39
40# Grandfather $NAME import
41sub import {
42 my $this = shift;
43 my @list = @_;
44 local $Exporter::ExportLevel = 1;
45 Exporter::import($this,grep {s/^\$/*/} @list);
46}
a0d0e21e 47
8990e307 48@EXPORT = qw(
49 *ARG
748a9306 50 *MATCH
51 *PREMATCH
52 *POSTMATCH
53 *LAST_PAREN_MATCH
54 *INPUT_LINE_NUMBER
55 *NR
56 *INPUT_RECORD_SEPARATOR
57 *RS
58 *OUTPUT_AUTOFLUSH
59 *OUTPUT_FIELD_SEPARATOR
60 *OFS
61 *OUTPUT_RECORD_SEPARATOR
62 *ORS
63 *LIST_SEPARATOR
64 *SUBSCRIPT_SEPARATOR
65 *SUBSEP
66 *FORMAT_PAGE_NUMBER
67 *FORMAT_LINES_PER_PAGE
68 *FORMAT_LINES_LEFT
69 *FORMAT_NAME
70 *FORMAT_TOP_NAME
71 *FORMAT_LINE_BREAK_CHARACTERS
72 *FORMAT_FORMFEED
73 *CHILD_ERROR
74 *OS_ERROR
75 *ERRNO
d57fa8b6 76 *EXTENDED_OS_ERROR
748a9306 77 *EVAL_ERROR
78 *PROCESS_ID
79 *PID
80 *REAL_USER_ID
81 *UID
82 *EFFECTIVE_USER_ID
83 *EUID
84 *REAL_GROUP_ID
85 *GID
86 *EFFECTIVE_GROUP_ID
87 *EGID
88 *PROGRAM_NAME
89 *PERL_VERSION
90 *ACCUMULATOR
91 *DEBUGGING
92 *SYSTEM_FD_MAX
93 *INPLACE_EDIT
94 *PERLDB
95 *BASETIME
96 *WARNING
97 *EXECUTABLE_NAME
d57fa8b6 98 *OSNAME
8990e307 99);
100
fb73857a 101# The ground of all being. @ARG is deprecated (5.005 makes @_ lexical)
8990e307 102
8990e307 103 *ARG = *_ ;
104
105# Matching.
106
748a9306 107 *MATCH = *& ;
108 *PREMATCH = *` ;
109 *POSTMATCH = *' ;
110 *LAST_PAREN_MATCH = *+ ;
8990e307 111
112# Input.
113
748a9306 114 *INPUT_LINE_NUMBER = *. ;
115 *NR = *. ;
116 *INPUT_RECORD_SEPARATOR = */ ;
117 *RS = */ ;
8990e307 118
119# Output.
120
748a9306 121 *OUTPUT_AUTOFLUSH = *| ;
122 *OUTPUT_FIELD_SEPARATOR = *, ;
123 *OFS = *, ;
124 *OUTPUT_RECORD_SEPARATOR = *\ ;
125 *ORS = *\ ;
8990e307 126
127# Interpolation "constants".
128
748a9306 129 *LIST_SEPARATOR = *" ;
130 *SUBSCRIPT_SEPARATOR = *; ;
131 *SUBSEP = *; ;
8990e307 132
133# Formats
134
748a9306 135 *FORMAT_PAGE_NUMBER = *% ;
136 *FORMAT_LINES_PER_PAGE = *= ;
137 *FORMAT_LINES_LEFT = *- ;
138 *FORMAT_NAME = *~ ;
139 *FORMAT_TOP_NAME = *^ ;
140 *FORMAT_LINE_BREAK_CHARACTERS = *: ;
141 *FORMAT_FORMFEED = *^L ;
8990e307 142
143# Error status.
144
748a9306 145 *CHILD_ERROR = *? ;
4318d5a0 146 *OS_ERROR = *! ;
147 *ERRNO = *! ;
f86702cc 148 *EXTENDED_OS_ERROR = *^E ;
748a9306 149 *EVAL_ERROR = *@ ;
8990e307 150
151# Process info.
152
748a9306 153 *PROCESS_ID = *$ ;
154 *PID = *$ ;
155 *REAL_USER_ID = *< ;
156 *UID = *< ;
157 *EFFECTIVE_USER_ID = *> ;
158 *EUID = *> ;
159 *REAL_GROUP_ID = *( ;
160 *GID = *( ;
161 *EFFECTIVE_GROUP_ID = *) ;
162 *EGID = *) ;
163 *PROGRAM_NAME = *0 ;
8990e307 164
165# Internals.
166
748a9306 167 *PERL_VERSION = *] ;
168 *ACCUMULATOR = *^A ;
305aace0 169 *COMPILING = *^C ;
748a9306 170 *DEBUGGING = *^D ;
171 *SYSTEM_FD_MAX = *^F ;
172 *INPLACE_EDIT = *^I ;
173 *PERLDB = *^P ;
174 *BASETIME = *^T ;
175 *WARNING = *^W ;
176 *EXECUTABLE_NAME = *^X ;
d57fa8b6 177 *OSNAME = *^O ;
8990e307 178
179# Deprecated.
180
748a9306 181# *ARRAY_BASE = *[ ;
182# *OFMT = *# ;
183# *MULTILINE_MATCHING = ** ;
8990e307 184
1851;