| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package String::Perl::Warnings; |
|
2
|
|
|
|
|
|
|
$String::Perl::Warnings::VERSION = '1.16'; |
|
3
|
|
|
|
|
|
|
#ABSTRACT: Determine if a string looks like a perl warning |
|
4
|
|
|
|
|
|
|
|
|
5
|
2
|
|
|
2
|
|
1680
|
use strict; |
|
|
2
|
|
|
|
|
4
|
|
|
|
2
|
|
|
|
|
82
|
|
|
6
|
2
|
|
|
2
|
|
9
|
use warnings; # Duh >:) |
|
|
2
|
|
|
|
|
2
|
|
|
|
2
|
|
|
|
|
56
|
|
|
7
|
2
|
|
|
2
|
|
1601
|
use Regexp::Assemble; |
|
|
2
|
|
|
|
|
40562
|
|
|
|
2
|
|
|
|
|
5432
|
|
|
8
|
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
require Exporter; |
|
10
|
|
|
|
|
|
|
our @ISA = qw( Exporter ); |
|
11
|
|
|
|
|
|
|
our @EXPORT_OK = qw(is_warning not_warning); |
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
our $re; |
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
{ |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
my $lines = [ |
|
18
|
|
|
|
|
|
|
q{.+?\ \"\\x.+?\"\ does\ not\ map\ to\ Unicode}, |
|
19
|
|
|
|
|
|
|
q{.+?\ \(\.\.\.\)\ interpreted\ as\ function}, |
|
20
|
|
|
|
|
|
|
q{.+?\ argument\ is\ not\ a\ HASH\ or\ ARRAY\ element}, |
|
21
|
|
|
|
|
|
|
q{.+?\ argument\ is\ not\ a\ HASH\ or\ ARRAY\ element\ or\ a\ subroutine}, |
|
22
|
|
|
|
|
|
|
q{.+?\ argument\ is\ not\ a\ HASH\ or\ ARRAY\ element\ or\ slice}, |
|
23
|
|
|
|
|
|
|
q{.+?\ argument\ is\ not\ a\ subroutine\ name}, |
|
24
|
|
|
|
|
|
|
q{.+?\ defines\ neither\ package\ nor\ VERSION\-\-version\ check\ failed}, |
|
25
|
|
|
|
|
|
|
q{.+?\ did\ not\ return\ a\ true\ value}, |
|
26
|
|
|
|
|
|
|
q{.+?\ does\ not\ define\ .+?\:\:VERSION\-\-version\ check\ failed}, |
|
27
|
|
|
|
|
|
|
q{.+?\ failed\-\-call\ queue\ aborted}, |
|
28
|
|
|
|
|
|
|
q{.+?\ found\ where\ operator\ expected}, |
|
29
|
|
|
|
|
|
|
q{.+?\ had\ compilation\ errors}, |
|
30
|
|
|
|
|
|
|
q{.+?\ had\ compilation\ errors\.}, |
|
31
|
|
|
|
|
|
|
q{.+?\ has\ too\ many\ errors}, |
|
32
|
|
|
|
|
|
|
q{.+?\ matches\ null\ string\ many\ times}, |
|
33
|
|
|
|
|
|
|
q{.+?\ matches\ null\ string\ many\ times\ in\ regex\;}, |
|
34
|
|
|
|
|
|
|
q{.+?\ matches\ null\ string\ many\ times\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in}, |
|
35
|
|
|
|
|
|
|
q{.+?\ matches\ null\ string\ many\ times\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
36
|
|
|
|
|
|
|
q{.+?\ never\ introduced}, |
|
37
|
|
|
|
|
|
|
q{.+?\ not\ allowed\ in\ length\ fields}, |
|
38
|
|
|
|
|
|
|
q{.+?\ package\ attribute\ may\ clash\ with\ future\ reserved\ word\:\ .+?}, |
|
39
|
|
|
|
|
|
|
q{.+?\ syntax}, |
|
40
|
|
|
|
|
|
|
q{.+?\ syntax\ OK}, |
|
41
|
|
|
|
|
|
|
q{.+?\(\)\ called\ too\ early\ to\ check\ prototype}, |
|
42
|
|
|
|
|
|
|
q{.+?\(\)\ on\ unopened\ .+?}, |
|
43
|
|
|
|
|
|
|
q{.+?\(\)\ on\ unopened\ .+?\ .+?}, |
|
44
|
|
|
|
|
|
|
q{.+?\-group\ starts\ with\ a\ count}, |
|
45
|
|
|
|
|
|
|
q{.+?\:\ Command\ not\ found}, |
|
46
|
|
|
|
|
|
|
q{.+?\:\ Eval\-group\ in\ insecure\ regular\ expression}, |
|
47
|
|
|
|
|
|
|
q{.+?\:\ Eval\-group\ not\ allowed\ at\ run\ time}, |
|
48
|
|
|
|
|
|
|
q{.+?\:\ Eval\-group\ not\ allowed\ at\ runtime\,\ use\ re\ \'eval\'}, |
|
49
|
|
|
|
|
|
|
q{.+?\:\ Eval\-group\ not\ allowed\,\ use\ re\ \'eval\'}, |
|
50
|
|
|
|
|
|
|
q{.+?\:\ Expression\ syntax}, |
|
51
|
|
|
|
|
|
|
q{.+?\:\ Undefined\ variable}, |
|
52
|
|
|
|
|
|
|
q{.+?\:\ not\ found}, |
|
53
|
|
|
|
|
|
|
q{.+?etsockopt\(\)\ on\ closed\ socket\ .+?}, |
|
54
|
|
|
|
|
|
|
q{.+?seek\(\)\ on\ unopened\ file}, |
|
55
|
|
|
|
|
|
|
q{.+?seek\(\)\ on\ unopened\ filehandle}, |
|
56
|
|
|
|
|
|
|
q{500\ Server\ error}, |
|
57
|
|
|
|
|
|
|
q{5\.005\ threads\ are\ deprecated}, |
|
58
|
|
|
|
|
|
|
q{A\ sequence\ of\ multiple\ spaces\ in\ a\ charnames\ alias\ definition\ is\ deprecated}, |
|
59
|
|
|
|
|
|
|
q{A\ thread\ exited\ while\ .+?\ other\ threads\ were\ still\ running}, |
|
60
|
|
|
|
|
|
|
q{A\ thread\ exited\ while\ .+?\ threads\ were\ running}, |
|
61
|
|
|
|
|
|
|
q{Allocation\ too\ large\:\ .+?}, |
|
62
|
|
|
|
|
|
|
q{Ambiguous\ call\ resolved\ as\ CORE\:\:.+?\(\)\,\ qualify\ as\ such\ or\ use\ \&}, |
|
63
|
|
|
|
|
|
|
q{Ambiguous\ range\ in\ transliteration\ operator}, |
|
64
|
|
|
|
|
|
|
q{Ambiguous\ use\ of\ .+?\ resolved\ as\ .+?}, |
|
65
|
|
|
|
|
|
|
q{Ambiguous\ use\ of\ .+?\ resolved\ as\ operator\ .+?}, |
|
66
|
|
|
|
|
|
|
q{Ambiguous\ use\ of\ .+?\{.+?\[\.\.\.\]\}\ resolved\ to\ .+?.+?\[\.\.\.\]}, |
|
67
|
|
|
|
|
|
|
q{Ambiguous\ use\ of\ .+?\{.+?\{\.\.\.\}\}\ resolved\ to\ .+?.+?\{\.\.\.\}}, |
|
68
|
|
|
|
|
|
|
q{Ambiguous\ use\ of\ .+?\{.+?\}\ resolved\ to\ .+?.+?}, |
|
69
|
|
|
|
|
|
|
q{Ambiguous\ use\ of\ \'s\/\/le\.\.\.\'\ resolved\ as\ \'s\/\/\ le\.\.\.\'\;\ Rewrite\ as\ \'s\/\/el\'\ if\ you\ meant\ \'use\ locale\ rules\ and\ evaluate\ rhs\ as\ an\ expression\'\.\ \ In\ Perl\ 5\.16\,\ it\ will\ be\ resolved\ the\ other\ way}, |
|
70
|
|
|
|
|
|
|
q{Ambiguous\ use\ of\ \'s\/\/le\.\.\.\'\ resolved\ as\ \'s\/\/\ le\.\.\.\'\;\ Rewrite\ as\ \'s\/\/el\'\ if\ you\ meant\ \'use\ locale\ rules\ and\ evaluate\ rhs\ as\ an\ expression\'\.\ \ In\ Perl\ 5\.18\,\ it\ will\ be\ resolved\ the\ other\ way}, |
|
71
|
|
|
|
|
|
|
q{Ambiguous\ use\ of\ \-.+?\ resolved\ as\ \-\&.+?\(\)}, |
|
72
|
|
|
|
|
|
|
q{Applying\ .+?\ to\ .+?\ will\ act\ on\ scalar\(.+?\)}, |
|
73
|
|
|
|
|
|
|
q{Arg\ too\ short\ for\ msgsnd}, |
|
74
|
|
|
|
|
|
|
q{Args\ must\ match\ \#\!\ line}, |
|
75
|
|
|
|
|
|
|
q{Argument\ \".+?\"\ isn\'t\ numeric.+?}, |
|
76
|
|
|
|
|
|
|
q{Argument\ list\ not\ closed\ for\ PerlIO\ layer\ \".+?\"}, |
|
77
|
|
|
|
|
|
|
q{Array\ \@.+?\ missing\ the\ \@\ in\ argument\ .+?\ of\ .+?\(\)}, |
|
78
|
|
|
|
|
|
|
q{Assertion\ .+?\ failed\:\ file\ \".+?\"\,\ line\ .+?}, |
|
79
|
|
|
|
|
|
|
q{Assertion\ failed\:\ file\ \".+?\"}, |
|
80
|
|
|
|
|
|
|
q{Assigning\ non\-zero\ to\ \$\[\ is\ no\ longer\ possible}, |
|
81
|
|
|
|
|
|
|
q{Assignment\ to\ both\ a\ list\ and\ a\ scalar}, |
|
82
|
|
|
|
|
|
|
q{Attempt\ to\ access\ disallowed\ key\ \'.+?\'\ in\ a\ restricted\ hash}, |
|
83
|
|
|
|
|
|
|
q{Attempt\ to\ bless\ into\ a\ freed\ package}, |
|
84
|
|
|
|
|
|
|
q{Attempt\ to\ bless\ into\ a\ reference}, |
|
85
|
|
|
|
|
|
|
q{Attempt\ to\ clear\ a\ restricted\ hash}, |
|
86
|
|
|
|
|
|
|
q{Attempt\ to\ clear\ deleted\ array}, |
|
87
|
|
|
|
|
|
|
q{Attempt\ to\ delete\ disallowed\ key\ \'.+?\'\ from\ a\ restricted\ hash}, |
|
88
|
|
|
|
|
|
|
q{Attempt\ to\ delete\ readonly\ key\ \'.+?\'\ from\ a\ restricted\ hash}, |
|
89
|
|
|
|
|
|
|
q{Attempt\ to\ free\ non\-arena\ SV\:\ 0x.+?}, |
|
90
|
|
|
|
|
|
|
q{Attempt\ to\ free\ nonexistent\ shared\ string}, |
|
91
|
|
|
|
|
|
|
q{Attempt\ to\ free\ nonexistent\ shared\ string\ \'.+?\'.+?}, |
|
92
|
|
|
|
|
|
|
q{Attempt\ to\ free\ temp\ prematurely}, |
|
93
|
|
|
|
|
|
|
q{Attempt\ to\ free\ temp\ prematurely\:\ SV\ 0x.+?}, |
|
94
|
|
|
|
|
|
|
q{Attempt\ to\ free\ unreferenced\ glob\ pointers}, |
|
95
|
|
|
|
|
|
|
q{Attempt\ to\ free\ unreferenced\ scalar}, |
|
96
|
|
|
|
|
|
|
q{Attempt\ to\ free\ unreferenced\ scalar\:\ SV\ 0x.+?}, |
|
97
|
|
|
|
|
|
|
q{Attempt\ to\ join\ self}, |
|
98
|
|
|
|
|
|
|
q{Attempt\ to\ pack\ pointer\ to\ temporary\ value}, |
|
99
|
|
|
|
|
|
|
q{Attempt\ to\ reload\ .+?\ aborted\.}, |
|
100
|
|
|
|
|
|
|
q{Attempt\ to\ set\ length\ of\ freed\ array}, |
|
101
|
|
|
|
|
|
|
q{Attempt\ to\ use\ reference\ as\ lvalue\ in\ substr}, |
|
102
|
|
|
|
|
|
|
q{Attribute\ \"locked\"\ is\ deprecated}, |
|
103
|
|
|
|
|
|
|
q{Attribute\ \"unique\"\ is\ deprecated}, |
|
104
|
|
|
|
|
|
|
q{Attribute\ prototype\(.+?\)\ discards\ earlier\ prototype\ attribute\ in\ same\ sub}, |
|
105
|
|
|
|
|
|
|
q{BEGIN\ failed\-\-compilation\ aborted}, |
|
106
|
|
|
|
|
|
|
q{BEGIN\ not\ safe\ after\ errors\-\-compilation\ aborted}, |
|
107
|
|
|
|
|
|
|
q{B\<\-P\>\ not\ allowed\ for\ setuid\/setgid\ script}, |
|
108
|
|
|
|
|
|
|
q{Bad\ arg\ length\ for\ .+?\,\ is\ .+?\,\ should\ be\ .+?}, |
|
109
|
|
|
|
|
|
|
q{Bad\ evalled\ substitution\ pattern}, |
|
110
|
|
|
|
|
|
|
q{Bad\ filehandle\:\ .+?}, |
|
111
|
|
|
|
|
|
|
q{Bad\ free\(\)\ ignored}, |
|
112
|
|
|
|
|
|
|
q{Bad\ hash}, |
|
113
|
|
|
|
|
|
|
q{Bad\ index\ while\ coercing\ array\ into\ hash}, |
|
114
|
|
|
|
|
|
|
q{Bad\ name\ after\ .+?}, |
|
115
|
|
|
|
|
|
|
q{Bad\ name\ after\ .+?\:\:}, |
|
116
|
|
|
|
|
|
|
q{Bad\ plugin\ affecting\ keyword\ \'.+?\'}, |
|
117
|
|
|
|
|
|
|
q{Bad\ realloc\(\)\ ignored}, |
|
118
|
|
|
|
|
|
|
q{Bad\ symbol\ for\ array}, |
|
119
|
|
|
|
|
|
|
q{Bad\ symbol\ for\ dirhandle}, |
|
120
|
|
|
|
|
|
|
q{Bad\ symbol\ for\ filehandle}, |
|
121
|
|
|
|
|
|
|
q{Bad\ symbol\ for\ hash}, |
|
122
|
|
|
|
|
|
|
q{Badly\ placed\ \(\)\'s}, |
|
123
|
|
|
|
|
|
|
q{Bareword\ \".+?\"\ not\ allowed\ while\ \"strict\ subs\"\ in\ use}, |
|
124
|
|
|
|
|
|
|
q{Bareword\ \".+?\"\ refers\ to\ nonexistent\ package}, |
|
125
|
|
|
|
|
|
|
q{Bareword\ found\ in\ conditional}, |
|
126
|
|
|
|
|
|
|
q{Binary\ number\ \>\ 0b11111111111111111111111111111111\ non\-portable}, |
|
127
|
|
|
|
|
|
|
q{Bit\ vector\ size\ \>\ 32\ non\-portable}, |
|
128
|
|
|
|
|
|
|
q{Bizarre\ SvTYPE\ \[.+?\]}, |
|
129
|
|
|
|
|
|
|
q{Bizarre\ copy\ of\ .+?}, |
|
130
|
|
|
|
|
|
|
q{Bizarre\ copy\ of\ .+?\ in\ .+?}, |
|
131
|
|
|
|
|
|
|
q{Buffer\ overflow\ in\ prime_env_iter\:\ .+?}, |
|
132
|
|
|
|
|
|
|
q{CORE\:\:.+?\ is\ not\ a\ keyword}, |
|
133
|
|
|
|
|
|
|
q{C\<\-T\>\ and\ C\<\-B\>\ not\ implemented\ on\ filehandles}, |
|
134
|
|
|
|
|
|
|
q{C\<\-p\>\ destination\:\ .+?}, |
|
135
|
|
|
|
|
|
|
q{Callback\ called\ exit}, |
|
136
|
|
|
|
|
|
|
q{Calling\ POSIX\:\:.+?\(\)\ is\ deprecated}, |
|
137
|
|
|
|
|
|
|
q{Can\ only\ compress\ unsigned\ integers\ in\ pack}, |
|
138
|
|
|
|
|
|
|
q{Can\'t\ .+?\ .+?\-endian\ .+?s\ on\ this\ platform}, |
|
139
|
|
|
|
|
|
|
q{Can\'t\ \"break\"\ in\ a\ loop\ topicalizer}, |
|
140
|
|
|
|
|
|
|
q{Can\'t\ \"break\"\ outside\ a\ given\ block}, |
|
141
|
|
|
|
|
|
|
q{Can\'t\ \"continue\"\ outside\ a\ when\ block}, |
|
142
|
|
|
|
|
|
|
q{Can\'t\ \"default\"\ outside\ a\ topicalizer}, |
|
143
|
|
|
|
|
|
|
q{Can\'t\ \"goto\"\ into\ the\ middle\ of\ a\ foreach\ loop}, |
|
144
|
|
|
|
|
|
|
q{Can\'t\ \"goto\"\ out\ of\ a\ pseudo\ block}, |
|
145
|
|
|
|
|
|
|
q{Can\'t\ \"last\"\ outside\ a\ loop\ block}, |
|
146
|
|
|
|
|
|
|
q{Can\'t\ \"next\"\ outside\ a\ loop\ block}, |
|
147
|
|
|
|
|
|
|
q{Can\'t\ \"redo\"\ outside\ a\ loop\ block}, |
|
148
|
|
|
|
|
|
|
q{Can\'t\ \"when\"\ outside\ a\ topicalizer}, |
|
149
|
|
|
|
|
|
|
q{Can\'t\ bless\ non\-reference\ value}, |
|
150
|
|
|
|
|
|
|
q{Can\'t\ break\ at\ that\ line}, |
|
151
|
|
|
|
|
|
|
q{Can\'t\ call\ method\ \".+?\"\ in\ empty\ package\ \".+?\"}, |
|
152
|
|
|
|
|
|
|
q{Can\'t\ call\ method\ \".+?\"\ on\ an\ undefined\ value}, |
|
153
|
|
|
|
|
|
|
q{Can\'t\ call\ method\ \".+?\"\ on\ unblessed\ reference}, |
|
154
|
|
|
|
|
|
|
q{Can\'t\ call\ method\ \".+?\"\ without\ a\ package\ or\ object\ reference}, |
|
155
|
|
|
|
|
|
|
q{Can\'t\ call\ mro_isa_changed_in\(\)\ on\ anonymous\ symbol\ table}, |
|
156
|
|
|
|
|
|
|
q{Can\'t\ call\ mro_method_changed_in\(\)\ on\ anonymous\ symbol\ table}, |
|
157
|
|
|
|
|
|
|
q{Can\'t\ chdir\ to\ .+?}, |
|
158
|
|
|
|
|
|
|
q{Can\'t\ check\ filesystem\ of\ script\ \".+?\"\ for\ nosuid}, |
|
159
|
|
|
|
|
|
|
q{Can\'t\ coerce\ .+?\ to\ .+?\ in\ .+?}, |
|
160
|
|
|
|
|
|
|
q{Can\'t\ coerce\ .+?\ to\ integer\ in\ .+?}, |
|
161
|
|
|
|
|
|
|
q{Can\'t\ coerce\ .+?\ to\ number\ in\ .+?}, |
|
162
|
|
|
|
|
|
|
q{Can\'t\ coerce\ .+?\ to\ string\ in\ .+?}, |
|
163
|
|
|
|
|
|
|
q{Can\'t\ coerce\ array\ into\ hash}, |
|
164
|
|
|
|
|
|
|
q{Can\'t\ create\ pipe\ mailbox}, |
|
165
|
|
|
|
|
|
|
q{Can\'t\ declare\ .+?\ in\ \".+?\"}, |
|
166
|
|
|
|
|
|
|
q{Can\'t\ declare\ class\ for\ non\-scalar\ .+?\ in\ \".+?\"}, |
|
167
|
|
|
|
|
|
|
q{Can\'t\ do\ \{n\,m\}\ with\ n\ \>\ m}, |
|
168
|
|
|
|
|
|
|
q{Can\'t\ do\ \{n\,m\}\ with\ n\ \>\ m\ before\ \<\<\ HERE\ in\ regex\ m\/.+?\/}, |
|
169
|
|
|
|
|
|
|
q{Can\'t\ do\ \{n\,m\}\ with\ n\ \>\ m\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
170
|
|
|
|
|
|
|
q{Can\'t\ do\ inplace\ edit\ on\ .+?\:\ .+?}, |
|
171
|
|
|
|
|
|
|
q{Can\'t\ do\ inplace\ edit\ without\ backup}, |
|
172
|
|
|
|
|
|
|
q{Can\'t\ do\ inplace\ edit\:\ .+?\ is\ not\ a\ regular\ file}, |
|
173
|
|
|
|
|
|
|
q{Can\'t\ do\ inplace\ edit\:\ .+?\ would\ not\ be\ unique}, |
|
174
|
|
|
|
|
|
|
q{Can\'t\ do\ setegid\!}, |
|
175
|
|
|
|
|
|
|
q{Can\'t\ do\ seteuid\!}, |
|
176
|
|
|
|
|
|
|
q{Can\'t\ do\ setuid}, |
|
177
|
|
|
|
|
|
|
q{Can\'t\ do\ waitpid\ with\ flags}, |
|
178
|
|
|
|
|
|
|
q{Can\'t\ emulate\ \-.+?\ on\ \#\!\ line}, |
|
179
|
|
|
|
|
|
|
q{Can\'t\ exec\ .+?}, |
|
180
|
|
|
|
|
|
|
q{Can\'t\ exec\ \".+?\"\:\ .+?}, |
|
181
|
|
|
|
|
|
|
q{Can\'t\ execute\ .+?}, |
|
182
|
|
|
|
|
|
|
q{Can\'t\ find\ .+?\ character\ property\ \".+?\"}, |
|
183
|
|
|
|
|
|
|
q{Can\'t\ find\ .+?\ on\ PATH}, |
|
184
|
|
|
|
|
|
|
q{Can\'t\ find\ .+?\ on\ PATH\,\ \'\.\'\ not\ in\ PATH}, |
|
185
|
|
|
|
|
|
|
q{Can\'t\ find\ .+?\ property\ definition\ .+?}, |
|
186
|
|
|
|
|
|
|
q{Can\'t\ find\ .+?\ property\ definition\ .+?\ }, |
|
187
|
|
|
|
|
|
|
q{Can\'t\ find\ Unicode\ property\ definition\ \".+?\"}, |
|
188
|
|
|
|
|
|
|
q{Can\'t\ find\ an\ opnumber\ for\ \".+?\"}, |
|
189
|
|
|
|
|
|
|
q{Can\'t\ find\ label\ .+?}, |
|
190
|
|
|
|
|
|
|
q{Can\'t\ find\ string\ terminator\ .+?\ anywhere\ before\ EOF}, |
|
191
|
|
|
|
|
|
|
q{Can\'t\ fork}, |
|
192
|
|
|
|
|
|
|
q{Can\'t\ fork\,\ trying\ again\ in\ 5\ seconds}, |
|
193
|
|
|
|
|
|
|
q{Can\'t\ fork\:\ .+?}, |
|
194
|
|
|
|
|
|
|
q{Can\'t\ get\ SYSGEN\ parameter\ value\ for\ MAXBUF}, |
|
195
|
|
|
|
|
|
|
q{Can\'t\ get\ filespec\ \-\ stale\ stat\ buffer\?}, |
|
196
|
|
|
|
|
|
|
q{Can\'t\ get\ pipe\ mailbox\ device\ name}, |
|
197
|
|
|
|
|
|
|
q{Can\'t\ goto\ subroutine\ from\ a\ sort\ sub\ \(or\ similar\ callback\)}, |
|
198
|
|
|
|
|
|
|
q{Can\'t\ goto\ subroutine\ from\ an\ eval\-.+?}, |
|
199
|
|
|
|
|
|
|
q{Can\'t\ goto\ subroutine\ from\ an\ eval\-string}, |
|
200
|
|
|
|
|
|
|
q{Can\'t\ goto\ subroutine\ outside\ a\ subroutine}, |
|
201
|
|
|
|
|
|
|
q{Can\'t\ ignore\ signal\ CHLD\,\ forcing\ to\ default}, |
|
202
|
|
|
|
|
|
|
q{Can\'t\ kill\ a\ non\-numeric\ process\ ID}, |
|
203
|
|
|
|
|
|
|
q{Can\'t\ linearize\ anonymous\ symbol\ table}, |
|
204
|
|
|
|
|
|
|
q{Can\'t\ load\ \'.+?\'\ for\ module\ .+?}, |
|
205
|
|
|
|
|
|
|
q{Can\'t\ localize\ lexical\ variable\ .+?}, |
|
206
|
|
|
|
|
|
|
q{Can\'t\ localize\ pseudo\-hash\ element}, |
|
207
|
|
|
|
|
|
|
q{Can\'t\ localize\ through\ a\ reference}, |
|
208
|
|
|
|
|
|
|
q{Can\'t\ locate\ .+?}, |
|
209
|
|
|
|
|
|
|
q{Can\'t\ locate\ PerlIO.+?}, |
|
210
|
|
|
|
|
|
|
q{Can\'t\ locate\ auto\/.+?\.al\ in\ \@INC}, |
|
211
|
|
|
|
|
|
|
q{Can\'t\ locate\ loadable\ object\ for\ module\ .+?\ in\ \@INC}, |
|
212
|
|
|
|
|
|
|
q{Can\'t\ locate\ object\ method\ \".+?\"\ via\ package\ \".+?\"}, |
|
213
|
|
|
|
|
|
|
q{Can\'t\ locate\ package\ .+?\ for\ \@.+?\:\:ISA}, |
|
214
|
|
|
|
|
|
|
q{Can\'t\ locate\ package\ .+?\ for\ the\ parents\ of\ .+?}, |
|
215
|
|
|
|
|
|
|
q{Can\'t\ make\ list\ assignment\ to\ \%ENV\ on\ this\ system}, |
|
216
|
|
|
|
|
|
|
q{Can\'t\ make\ list\ assignment\ to\ \\\%ENV\ on\ this\ system}, |
|
217
|
|
|
|
|
|
|
q{Can\'t\ make\ loaded\ symbols\ global\ on\ this\ platform\ while\ loading\ .+?}, |
|
218
|
|
|
|
|
|
|
q{Can\'t\ modify\ .+?\ in\ .+?}, |
|
219
|
|
|
|
|
|
|
q{Can\'t\ modify\ non\-lvalue\ subroutine\ call}, |
|
220
|
|
|
|
|
|
|
q{Can\'t\ modify\ nonexistent\ substring}, |
|
221
|
|
|
|
|
|
|
q{Can\'t\ msgrcv\ to\ read\-only\ var}, |
|
222
|
|
|
|
|
|
|
q{Can\'t\ open\ .+?}, |
|
223
|
|
|
|
|
|
|
q{Can\'t\ open\ .+?\:\ .+?}, |
|
224
|
|
|
|
|
|
|
q{Can\'t\ open\ a\ reference}, |
|
225
|
|
|
|
|
|
|
q{Can\'t\ open\ bidirectional\ pipe}, |
|
226
|
|
|
|
|
|
|
q{Can\'t\ open\ error\ file\ .+?\ as\ stderr}, |
|
227
|
|
|
|
|
|
|
q{Can\'t\ open\ input\ file\ .+?\ as\ stdin}, |
|
228
|
|
|
|
|
|
|
q{Can\'t\ open\ output\ file\ .+?\ as\ stdout}, |
|
229
|
|
|
|
|
|
|
q{Can\'t\ open\ output\ pipe\ \(name\:\ .+?\)}, |
|
230
|
|
|
|
|
|
|
q{Can\'t\ open\ perl\ script.+?}, |
|
231
|
|
|
|
|
|
|
q{Can\'t\ open\ perl\ script.+?\:\ .+?}, |
|
232
|
|
|
|
|
|
|
q{Can\'t\ open\ perl\ script\ \".+?\"\:\ .+?}, |
|
233
|
|
|
|
|
|
|
q{Can\'t\ read\ CRTL\ environ}, |
|
234
|
|
|
|
|
|
|
q{Can\'t\ redefine\ active\ sort\ subroutine\ .+?}, |
|
235
|
|
|
|
|
|
|
q{Can\'t\ remove\ .+?\:\ .+?\,\ skipping\ file}, |
|
236
|
|
|
|
|
|
|
q{Can\'t\ remove\ .+?\:\ .+?\,\ skipping\ file\ }, |
|
237
|
|
|
|
|
|
|
q{Can\'t\ rename\ .+?\ to\ .+?\:\ .+?\,\ skipping\ file}, |
|
238
|
|
|
|
|
|
|
q{Can\'t\ reopen\ input\ pipe\ \(name\:\ .+?\)\ in\ binary\ mode}, |
|
239
|
|
|
|
|
|
|
q{Can\'t\ reset\ \%ENV\ on\ this\ system}, |
|
240
|
|
|
|
|
|
|
q{Can\'t\ resolve\ method\ \".+?\"\ overloading\ \".+?\"\ in\ package\ \".+?\"}, |
|
241
|
|
|
|
|
|
|
q{Can\'t\ resolve\ method\ \`.+?\'\ overloading\ \`.+?\'\ in\ package\ \`.+?\'}, |
|
242
|
|
|
|
|
|
|
q{Can\'t\ reswap\ uid\ and\ euid}, |
|
243
|
|
|
|
|
|
|
q{Can\'t\ return\ .+?\ from\ lvalue\ subroutine}, |
|
244
|
|
|
|
|
|
|
q{Can\'t\ return\ .+?\ to\ lvalue\ scalar\ context}, |
|
245
|
|
|
|
|
|
|
q{Can\'t\ return\ outside\ a\ subroutine}, |
|
246
|
|
|
|
|
|
|
q{Can\'t\ stat\ script\ \".+?\"}, |
|
247
|
|
|
|
|
|
|
q{Can\'t\ swap\ uid\ and\ euid}, |
|
248
|
|
|
|
|
|
|
q{Can\'t\ take\ log\ of\ \%g}, |
|
249
|
|
|
|
|
|
|
q{Can\'t\ take\ sqrt\ of\ \%g}, |
|
250
|
|
|
|
|
|
|
q{Can\'t\ undef\ active\ subroutine}, |
|
251
|
|
|
|
|
|
|
q{Can\'t\ unshift}, |
|
252
|
|
|
|
|
|
|
q{Can\'t\ upgrade\ .+?\ \(.+?\)\ to\ .+?}, |
|
253
|
|
|
|
|
|
|
q{Can\'t\ upgrade\ that\ kind\ of\ scalar}, |
|
254
|
|
|
|
|
|
|
q{Can\'t\ upgrade\ to\ undef}, |
|
255
|
|
|
|
|
|
|
q{Can\'t\ use\ .+?\ for\ loop\ variable}, |
|
256
|
|
|
|
|
|
|
q{Can\'t\ use\ .+?\ ref\ as\ .+?\ ref}, |
|
257
|
|
|
|
|
|
|
q{Can\'t\ use\ \"my\ .+?\"\ in\ sort\ comparison}, |
|
258
|
|
|
|
|
|
|
q{Can\'t\ use\ \"when\"\ outside\ a\ topicalizer}, |
|
259
|
|
|
|
|
|
|
q{Can\'t\ use\ \%\!\ because\ Errno\.pm\ is\ not\ available}, |
|
260
|
|
|
|
|
|
|
q{Can\'t\ use\ \%\%\!\ because\ Errno\.pm\ is\ not\ available}, |
|
261
|
|
|
|
|
|
|
q{Can\'t\ use\ \'.+?\'\ after\ \-mname}, |
|
262
|
|
|
|
|
|
|
q{Can\'t\ use\ \'.+?\'\ in\ a\ group\ with\ different\ byte\-order\ in\ .+?}, |
|
263
|
|
|
|
|
|
|
q{Can\'t\ use\ \\.+?\ to\ mean\ \$.+?\ in\ expression}, |
|
264
|
|
|
|
|
|
|
q{Can\'t\ use\ an\ undefined\ value\ as\ .+?\ reference}, |
|
265
|
|
|
|
|
|
|
q{Can\'t\ use\ anonymous\ symbol\ table\ for\ method\ lookup}, |
|
266
|
|
|
|
|
|
|
q{Can\'t\ use\ bareword\ \(\".+?\"\)\ as\ .+?\ ref\ while\ \"strict\ refs\"\ in\ use}, |
|
267
|
|
|
|
|
|
|
q{Can\'t\ use\ both\ \'\<\'\ and\ \'\>\'\ after\ type\ \'.+?\'\ in\ .+?}, |
|
268
|
|
|
|
|
|
|
q{Can\'t\ use\ global\ .+?\ in\ \".+?\"}, |
|
269
|
|
|
|
|
|
|
q{Can\'t\ use\ global\ .+?\ in\ \"my\"}, |
|
270
|
|
|
|
|
|
|
q{Can\'t\ use\ string\ \(\".+?\"\)\ as\ .+?\ ref\ while\ \"strict\ refs\"\ in\ use}, |
|
271
|
|
|
|
|
|
|
q{Can\'t\ use\ string\ \(\".+?\"\.\.\.\)\ as\ .+?\ ref\ while\ \"strict\ refs\"\ in\ use}, |
|
272
|
|
|
|
|
|
|
q{Can\'t\ use\ subscript\ on\ .+?}, |
|
273
|
|
|
|
|
|
|
q{Can\'t\ weaken\ a\ nonreference}, |
|
274
|
|
|
|
|
|
|
q{Can\'t\ x\=\ to\ read\-only\ value}, |
|
275
|
|
|
|
|
|
|
q{Cannot\ compress\ integer\ in\ pack}, |
|
276
|
|
|
|
|
|
|
q{Cannot\ compress\ negative\ numbers\ in\ pack}, |
|
277
|
|
|
|
|
|
|
q{Cannot\ convert\ a\ reference\ to\ .+?\ to\ typeglob}, |
|
278
|
|
|
|
|
|
|
q{Cannot\ copy\ to\ .+?}, |
|
279
|
|
|
|
|
|
|
q{Cannot\ copy\ to\ .+?\ in\ .+?}, |
|
280
|
|
|
|
|
|
|
q{Cannot\ find\ encoding\ \".+?\"}, |
|
281
|
|
|
|
|
|
|
q{Cannot\ set\ tied\ \@DB\:\:args}, |
|
282
|
|
|
|
|
|
|
q{Cannot\ tie\ unreifiable\ array}, |
|
283
|
|
|
|
|
|
|
q{Character\ class\ \[\:.+?\:\]\ unknown}, |
|
284
|
|
|
|
|
|
|
q{Character\ class\ syntax\ \[.+?\]\ belongs\ inside\ character\ classes}, |
|
285
|
|
|
|
|
|
|
q{Character\ class\ syntax\ \[\.\ \.\]\ is\ reserved\ for\ future\ extensions}, |
|
286
|
|
|
|
|
|
|
q{Character\ class\ syntax\ \[\=\ \=\]\ is\ reserved\ for\ future\ extensions}, |
|
287
|
|
|
|
|
|
|
q{Character\ following\ \"\\c\"\ must\ be\ ASCII}, |
|
288
|
|
|
|
|
|
|
q{Character\ following\ \"\\c\"\ must\ be\ printable\ ASCII}, |
|
289
|
|
|
|
|
|
|
q{Character\ in\ \"C\"\ format\ wrapped}, |
|
290
|
|
|
|
|
|
|
q{Character\ in\ \"C\"\ format\ wrapped\ in\ pack}, |
|
291
|
|
|
|
|
|
|
q{Character\ in\ \"c\"\ format\ wrapped}, |
|
292
|
|
|
|
|
|
|
q{Character\ in\ \"c\"\ format\ wrapped\ in\ pack}, |
|
293
|
|
|
|
|
|
|
q{Character\ in\ \'.+?\'\ format\ wrapped\ in\ unpack}, |
|
294
|
|
|
|
|
|
|
q{Character\ in\ \'C\'\ format\ wrapped\ in\ pack}, |
|
295
|
|
|
|
|
|
|
q{Character\ in\ \'W\'\ format\ wrapped\ in\ pack}, |
|
296
|
|
|
|
|
|
|
q{Character\ in\ \'c\'\ format\ wrapped\ in\ pack}, |
|
297
|
|
|
|
|
|
|
q{Character\(s\)\ in\ \'.+?\'\ format\ wrapped\ in\ pack}, |
|
298
|
|
|
|
|
|
|
q{Character\(s\)\ in\ \'.+?\'\ format\ wrapped\ in\ unpack}, |
|
299
|
|
|
|
|
|
|
q{Cloning\ substitution\ context\ is\ unimplemented}, |
|
300
|
|
|
|
|
|
|
q{Close\ on\ unopened\ file\ \<.+?\>}, |
|
301
|
|
|
|
|
|
|
q{Closure\ prototype\ called}, |
|
302
|
|
|
|
|
|
|
q{Code\ missing\ after\ \'\/\'}, |
|
303
|
|
|
|
|
|
|
q{Code\ point\ 0x.+?\ is\ not\ Unicode\,\ all\ \\p\{\}\ matches\ fail\;\ all\ \\P\{\}\ matches\ }, |
|
304
|
|
|
|
|
|
|
q{Code\ point\ 0x.+?\ is\ not\ Unicode\,\ all\ \\p\{\}\ matches\ fail\;\ all\ \\P\{\}\ matches\ succeed}, |
|
305
|
|
|
|
|
|
|
q{Code\ point\ 0x.+?\ is\ not\ Unicode\,\ may\ not\ be\ portable}, |
|
306
|
|
|
|
|
|
|
q{Code\ point\ 0x.+?\ is\ not\ Unicode\,\ no\ properties\ match\ it\;\ all\ inverse\ properties\ do}, |
|
307
|
|
|
|
|
|
|
q{Compilation\ failed\ in\ require}, |
|
308
|
|
|
|
|
|
|
q{Complex\ regular\ subexpression\ recursion\ limit\ \(.+?\)\ exceeded}, |
|
309
|
|
|
|
|
|
|
q{Constant\ is\ not\ .+?\ reference}, |
|
310
|
|
|
|
|
|
|
q{Constant\ subroutine\ .+?\ redefined}, |
|
311
|
|
|
|
|
|
|
q{Constant\ subroutine\ .+?\ undefined}, |
|
312
|
|
|
|
|
|
|
q{Constant\(.+?\).+?\:\ .+?}, |
|
313
|
|
|
|
|
|
|
q{Constant\(.+?\).+?\:\ .+?\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
314
|
|
|
|
|
|
|
q{Constant\(.+?\)\ unknown}, |
|
315
|
|
|
|
|
|
|
q{Constant\(.+?\)\:\ Call\ to\ \&\{\$\^H\{.+?\}\}\ did\ not\ return\ a\ defined\ value}, |
|
316
|
|
|
|
|
|
|
q{Constant\(.+?\)\:\ \$\^H\{.+?\}\ is\ not\ defined}, |
|
317
|
|
|
|
|
|
|
q{Copy\ method\ did\ not\ return\ a\ reference}, |
|
318
|
|
|
|
|
|
|
q{Corrupt\ malloc\ ptr\ 0x.+?\ at\ 0x.+?}, |
|
319
|
|
|
|
|
|
|
q{Corrupted\ regexp\ opcode\ .+?\ \>\ .+?}, |
|
320
|
|
|
|
|
|
|
q{Count\ after\ length\/code\ in\ unpack}, |
|
321
|
|
|
|
|
|
|
q{DESTROY\ created\ new\ reference\ to\ dead\ object\ \'.+?\'}, |
|
322
|
|
|
|
|
|
|
q{Deep\ recursion\ on\ anonymous\ subroutine}, |
|
323
|
|
|
|
|
|
|
q{Deep\ recursion\ on\ subroutine\ \".+?\"}, |
|
324
|
|
|
|
|
|
|
q{Delimiter\ for\ here\ document\ is\ too\ long}, |
|
325
|
|
|
|
|
|
|
q{Deprecated\ character\ in\ \\N\{\.\.\.\}\;\ marked\ by\ \<\-\-\ HERE\ \ in\ \\N\{.+?\<\-\-\ HERE\ .+?}, |
|
326
|
|
|
|
|
|
|
q{Deprecated\ character\(s\)\ in\ \\\\N\{\.\.\.\}\ starting\ at\ \'.+?\'}, |
|
327
|
|
|
|
|
|
|
q{Deprecated\ use\ of\ my\(\)\ in\ false\ conditional}, |
|
328
|
|
|
|
|
|
|
q{Did\ not\ produce\ a\ valid\ header}, |
|
329
|
|
|
|
|
|
|
q{Died}, |
|
330
|
|
|
|
|
|
|
q{Document\ contains\ no\ data}, |
|
331
|
|
|
|
|
|
|
q{Don\'t\ know\ how\ to\ get\ file\ name}, |
|
332
|
|
|
|
|
|
|
q{Don\'t\ know\ how\ to\ handle\ magic\ of\ type\ \'.+?\'}, |
|
333
|
|
|
|
|
|
|
q{Don\'t\ know\ how\ to\ handle\ magic\ of\ type\ \\\%o}, |
|
334
|
|
|
|
|
|
|
q{Duplicate\ free\(\)\ ignored}, |
|
335
|
|
|
|
|
|
|
q{Duplicate\ modifier\ \'.+?\'\ after\ \'.+?\'\ in\ .+?}, |
|
336
|
|
|
|
|
|
|
q{EVAL\ without\ pos\ change\ exceeded\ limit\ in\ regex\;\ marked\ by}, |
|
337
|
|
|
|
|
|
|
q{EVAL\ without\ pos\ change\ exceeded\ limit\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ }, |
|
338
|
|
|
|
|
|
|
q{EVAL\ without\ pos\ change\ exceeded\ limit\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
339
|
|
|
|
|
|
|
q{Empty\ .+?}, |
|
340
|
|
|
|
|
|
|
q{Empty\ \\.+?\{\}\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in\ m\/.+?\/}, |
|
341
|
|
|
|
|
|
|
q{Empty\ \\.+?\{\}\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
342
|
|
|
|
|
|
|
q{Error\ converting\ file\ specification\ .+?}, |
|
343
|
|
|
|
|
|
|
q{Escape\ literal\ pattern\ white\ space\ under\ \/x}, |
|
344
|
|
|
|
|
|
|
q{Eval\-group\ in\ insecure\ regular\ expression}, |
|
345
|
|
|
|
|
|
|
q{Eval\-group\ not\ allowed\ at\ runtime\,\ use\ re\ \'eval\'\ in\ regex\ m\/.+?\/}, |
|
346
|
|
|
|
|
|
|
q{Eval\-group\ not\ allowed\,\ use\ re\ \'eval\'\ in\ regex\ m\/.+?\/}, |
|
347
|
|
|
|
|
|
|
q{Excessively\ long\ \<\>\ operator}, |
|
348
|
|
|
|
|
|
|
q{Execution\ of\ .+?\ aborted\ due\ to\ compilation\ errors}, |
|
349
|
|
|
|
|
|
|
q{Execution\ of\ .+?\ aborted\ due\ to\ compilation\ errors\.}, |
|
350
|
|
|
|
|
|
|
q{Exiting\ eval\ via\ .+?}, |
|
351
|
|
|
|
|
|
|
q{Exiting\ format\ via\ .+?}, |
|
352
|
|
|
|
|
|
|
q{Exiting\ pseudo\-block\ via\ .+?}, |
|
353
|
|
|
|
|
|
|
q{Exiting\ subroutine\ via\ .+?}, |
|
354
|
|
|
|
|
|
|
q{Exiting\ substitution\ via\ .+?}, |
|
355
|
|
|
|
|
|
|
q{Expecting\ \'\(\?flags\:\(\?\[\.\.\.\'\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in\ m\/.+?\/}, |
|
356
|
|
|
|
|
|
|
q{Expecting\ close\ bracket\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in\ m\/.+?\/}, |
|
357
|
|
|
|
|
|
|
q{Expecting\ close\ bracket\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
358
|
|
|
|
|
|
|
q{Experimental\ \".+?\"\ subs\ not\ enabled}, |
|
359
|
|
|
|
|
|
|
q{Experimental\ subroutine\ signatures\ not\ enabled}, |
|
360
|
|
|
|
|
|
|
q{Explicit\ blessing\ to\ \'\'\ \(assuming\ package\ main\)}, |
|
361
|
|
|
|
|
|
|
q{FETCHSIZE\ returned\ a\ negative\ value}, |
|
362
|
|
|
|
|
|
|
q{False\ \[\]\ range\ \".+?\"\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in\ m\/.+?\/}, |
|
363
|
|
|
|
|
|
|
q{False\ \[\]\ range\ \".+?\"\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
364
|
|
|
|
|
|
|
q{Fatal\ VMS\ error\ \(status\=.+?\)\ at\ .+?\,\ line\ .+?}, |
|
365
|
|
|
|
|
|
|
q{Fatal\ VMS\ error\ at\ .+?\,\ line\ .+?}, |
|
366
|
|
|
|
|
|
|
q{Field\ too\ wide\ in\ \'u\'\ format\ in\ pack}, |
|
367
|
|
|
|
|
|
|
q{Filehandle\ .+?\ never\ opened}, |
|
368
|
|
|
|
|
|
|
q{Filehandle\ .+?\ opened\ only\ for\ input}, |
|
369
|
|
|
|
|
|
|
q{Filehandle\ .+?\ opened\ only\ for\ output}, |
|
370
|
|
|
|
|
|
|
q{Filehandle\ .+?\ reopened\ as\ .+?\ only\ for\ input}, |
|
371
|
|
|
|
|
|
|
q{Filehandle\ STDIN\ reopened\ as\ .+?\ only\ for\ output}, |
|
372
|
|
|
|
|
|
|
q{Final\ \$\ should\ be\ \\\$\ or\ \$name}, |
|
373
|
|
|
|
|
|
|
q{Final\ \@\ should\ be\ \\\@\ or\ \@name}, |
|
374
|
|
|
|
|
|
|
q{Format\ .+?\ redefined}, |
|
375
|
|
|
|
|
|
|
q{Format\ not\ terminated}, |
|
376
|
|
|
|
|
|
|
q{Found\ \=\ in\ conditional\,\ should\ be\ \=\=}, |
|
377
|
|
|
|
|
|
|
q{Glob\ not\ terminated}, |
|
378
|
|
|
|
|
|
|
q{Global\ symbol\ \".+?\"\ requires\ explicit\ package\ name}, |
|
379
|
|
|
|
|
|
|
q{Got\ an\ error\ from\ DosAllocMem}, |
|
380
|
|
|
|
|
|
|
q{Goto\ undefined\ subroutine.+?}, |
|
381
|
|
|
|
|
|
|
q{Group\ name\ must\ start\ with\ a\ non\-digit\ word\ character\ in\ regex\;\ marked\ by\ }, |
|
382
|
|
|
|
|
|
|
q{Had\ to\ create\ .+?\ unexpectedly}, |
|
383
|
|
|
|
|
|
|
q{Hash\ \%.+?\ missing\ the\ \%\ in\ argument\ .+?\ of\ .+?\(\)}, |
|
384
|
|
|
|
|
|
|
q{Having\ no\ space\ between\ pattern\ and\ following\ word\ is\ deprecated}, |
|
385
|
|
|
|
|
|
|
q{Hexadecimal\ number\ \>\ 0xffffffff\ non\-portable}, |
|
386
|
|
|
|
|
|
|
q{IO\ layers\ \(like\ \".+?\"\)\ unavailable}, |
|
387
|
|
|
|
|
|
|
q{IO\ layers\ \(like\ \'.+?\'\)\ unavailable}, |
|
388
|
|
|
|
|
|
|
q{IO\:\:Socket\:\:atmark\ not\ implemented\ on\ this\ architecture}, |
|
389
|
|
|
|
|
|
|
q{Identifier\ too\ long}, |
|
390
|
|
|
|
|
|
|
q{Ignoring\ .+?\ in\ character\ class\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
391
|
|
|
|
|
|
|
q{Ignoring\ zero\ length\ \\N\{\}\ in\ character\ class}, |
|
392
|
|
|
|
|
|
|
q{Ignoring\ zero\ length\ \\N\{\}\ in\ character\ class\ in\ regex\;\ marked\ by}, |
|
393
|
|
|
|
|
|
|
q{Ignoring\ zero\ length\ \\N\{\}\ in\ character\ class\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
394
|
|
|
|
|
|
|
q{Ill\-formed\ CRTL\ environ\ value\ \".+?\"}, |
|
395
|
|
|
|
|
|
|
q{Ill\-formed\ message\ in\ prime_env_iter\:\ \|.+?\|}, |
|
396
|
|
|
|
|
|
|
q{Illegal\ binary\ digit\ .+?}, |
|
397
|
|
|
|
|
|
|
q{Illegal\ binary\ digit\ .+?\ ignored}, |
|
398
|
|
|
|
|
|
|
q{Illegal\ character\ .+?\ \(carriage\ return\)}, |
|
399
|
|
|
|
|
|
|
q{Illegal\ character\ \\\%o\ \(carriage\ return\)}, |
|
400
|
|
|
|
|
|
|
q{Illegal\ character\ after\ \'_\'\ in\ prototype\ for\ .+?\ \:\ .+?}, |
|
401
|
|
|
|
|
|
|
q{Illegal\ character\ in\ prototype\ for\ .+?\ \:\ .+?}, |
|
402
|
|
|
|
|
|
|
q{Illegal\ declaration\ of\ anonymous\ subroutine}, |
|
403
|
|
|
|
|
|
|
q{Illegal\ declaration\ of\ subroutine\ .+?}, |
|
404
|
|
|
|
|
|
|
q{Illegal\ division\ by\ zero}, |
|
405
|
|
|
|
|
|
|
q{Illegal\ hexadecimal\ digit\ .+?\ ignored}, |
|
406
|
|
|
|
|
|
|
q{Illegal\ modulus\ zero}, |
|
407
|
|
|
|
|
|
|
q{Illegal\ number\ of\ bits\ in\ vec}, |
|
408
|
|
|
|
|
|
|
q{Illegal\ octal\ digit\ .+?}, |
|
409
|
|
|
|
|
|
|
q{Illegal\ octal\ digit\ .+?\ ignored}, |
|
410
|
|
|
|
|
|
|
q{Illegal\ pattern\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in\ m\/.+?\/}, |
|
411
|
|
|
|
|
|
|
q{Illegal\ pattern\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
412
|
|
|
|
|
|
|
q{Illegal\ switch\ in\ PERL5OPT\:\ .+?}, |
|
413
|
|
|
|
|
|
|
q{Illegal\ switch\ in\ PERL5OPT\:\ \-.+?}, |
|
414
|
|
|
|
|
|
|
q{In\ EBCDIC\ the\ v\-string\ components\ cannot\ exceed\ 2147483647}, |
|
415
|
|
|
|
|
|
|
q{In\ \'\(\*VERB\.\.\.\)\'\,\ splitting\ the\ initial\ \'\(\*\'\ is\ deprecated\ in\ regex\;}, |
|
416
|
|
|
|
|
|
|
q{In\ \'\(\*VERB\.\.\.\)\'\,\ splitting\ the\ initial\ \'\(\*\'\ is\ deprecated\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
417
|
|
|
|
|
|
|
q{In\ \'\(\?\.\.\.\)\'\,\ splitting\ the\ initial\ \'\(\?\'\ is\ deprecated\ in\ regex\;}, |
|
418
|
|
|
|
|
|
|
q{In\ \'\(\?\.\.\.\)\'\,\ splitting\ the\ initial\ \'\(\?\'\ is\ deprecated\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
419
|
|
|
|
|
|
|
q{In\ string\,\ \@.+?\ now\ must\ be\ written\ as\ \\\@.+?}, |
|
420
|
|
|
|
|
|
|
q{Incomplete\ expression\ within\ \'\(\?\[\ \]\)\'\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>}, |
|
421
|
|
|
|
|
|
|
q{Incomplete\ expression\ within\ \'\(\?\[\ \]\)\'\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
422
|
|
|
|
|
|
|
q{Inconsistent\ hierarchy\ during\ C3\ merge\ of\ class\ \'.+?\'\:\ merging\ failed\ on\ }, |
|
423
|
|
|
|
|
|
|
q{Inconsistent\ hierarchy\ during\ C3\ merge\ of\ class\ \'.+?\'\:\ merging\ failed\ on\ parent\ \'.+?\'}, |
|
424
|
|
|
|
|
|
|
q{Infinite\ recursion\ in\ regex}, |
|
425
|
|
|
|
|
|
|
q{Infinite\ recursion\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
426
|
|
|
|
|
|
|
q{Initialization\ of\ state\ variables\ in\ list\ context\ currently\ forbidden}, |
|
427
|
|
|
|
|
|
|
q{Insecure\ \$ENV\{.+?\}\ while\ running\ .+?}, |
|
428
|
|
|
|
|
|
|
q{Insecure\ dependency\ in\ .+?}, |
|
429
|
|
|
|
|
|
|
q{Insecure\ directory\ in\ .+?}, |
|
430
|
|
|
|
|
|
|
q{Insecure\ user\-defined\ property\ .+?}, |
|
431
|
|
|
|
|
|
|
q{Integer\ overflow\ in\ .+?\ number}, |
|
432
|
|
|
|
|
|
|
q{Integer\ overflow\ in\ format\ string\ for\ .+?}, |
|
433
|
|
|
|
|
|
|
q{Integer\ overflow\ in\ srand}, |
|
434
|
|
|
|
|
|
|
q{Integer\ overflow\ in\ version}, |
|
435
|
|
|
|
|
|
|
q{Integer\ overflow\ in\ version\ .+?}, |
|
436
|
|
|
|
|
|
|
q{Internal\ disaster\ before\ \<\<\ HERE\ in\ regex\ m\/.+?\/}, |
|
437
|
|
|
|
|
|
|
q{Internal\ disaster\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in\ m\/.+?\/}, |
|
438
|
|
|
|
|
|
|
q{Internal\ disaster\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
439
|
|
|
|
|
|
|
q{Internal\ inconsistency\ in\ tracking\ vforks}, |
|
440
|
|
|
|
|
|
|
q{Internal\ urp\ before\ \<\<\ HERE\ in\ regex\ m\/.+?\/}, |
|
441
|
|
|
|
|
|
|
q{Internal\ urp\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in\ m\/.+?\/}, |
|
442
|
|
|
|
|
|
|
q{Internal\ urp\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
443
|
|
|
|
|
|
|
q{Invalid\ .+?\ attribute\:\ .+?}, |
|
444
|
|
|
|
|
|
|
q{Invalid\ .+?\ attributes\:\ .+?}, |
|
445
|
|
|
|
|
|
|
q{Invalid\ \[\]\ range\ \".+?\"\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in\ m\/.+?\/}, |
|
446
|
|
|
|
|
|
|
q{Invalid\ \[\]\ range\ \".+?\"\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
447
|
|
|
|
|
|
|
q{Invalid\ \[\]\ range\ \".+?\"\ in\ transliteration\ operator}, |
|
448
|
|
|
|
|
|
|
q{Invalid\ \[\]\ range\ \"\%\*\.\*s\"\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
449
|
|
|
|
|
|
|
q{Invalid\ \\0\ character\ in\ .+?\ for\ .+?\:\ .+?\\0.+?}, |
|
450
|
|
|
|
|
|
|
q{Invalid\ character\ in\ \\N\{\.\.\.\}\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in\ \\N\{.+?\}}, |
|
451
|
|
|
|
|
|
|
q{Invalid\ character\ in\ \\N\{\.\.\.\}\;\ marked\ by\ \<\-\-\ HERE\ in\ \\N\{.+?\}}, |
|
452
|
|
|
|
|
|
|
q{Invalid\ character\ in\ charnames\ alias\ definition\;\ marked\ by}, |
|
453
|
|
|
|
|
|
|
q{Invalid\ character\ in\ charnames\ alias\ definition\;\ marked\ by\ \<\-\-\ HERE\ in\ \'.+?}, |
|
454
|
|
|
|
|
|
|
q{Invalid\ conversion\ in\ .+?\:\ \".+?\"}, |
|
455
|
|
|
|
|
|
|
q{Invalid\ escape\ in\ the\ specified\ encoding\ in\ regex\;\ marked\ by}, |
|
456
|
|
|
|
|
|
|
q{Invalid\ escape\ in\ the\ specified\ encoding\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ }, |
|
457
|
|
|
|
|
|
|
q{Invalid\ escape\ in\ the\ specified\ encoding\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
458
|
|
|
|
|
|
|
q{Invalid\ hexadecimal\ number\ in\ \\N\{U\+\.\.\.\}}, |
|
459
|
|
|
|
|
|
|
q{Invalid\ hexadecimal\ number\ in\ \\N\{U\+\.\.\.\}\ in\ regex\;\ marked\ by}, |
|
460
|
|
|
|
|
|
|
q{Invalid\ hexadecimal\ number\ in\ \\N\{U\+\.\.\.\}\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ }, |
|
461
|
|
|
|
|
|
|
q{Invalid\ hexadecimal\ number\ in\ \\\\N\{U\+\.\.\.\}}, |
|
462
|
|
|
|
|
|
|
q{Invalid\ module\ name\ .+?\ with\ \-.+?\ option\:\ contains\ single\ \'\:\'}, |
|
463
|
|
|
|
|
|
|
q{Invalid\ mro\ name\:\ \'.+?\'}, |
|
464
|
|
|
|
|
|
|
q{Invalid\ negative\ number\ \(.+?\)\ in\ chr}, |
|
465
|
|
|
|
|
|
|
q{Invalid\ range\ \".+?\"\ in\ transliteration\ operator}, |
|
466
|
|
|
|
|
|
|
q{Invalid\ separator\ character\ .+?\ in\ PerlIO\ layer\ specification\ .+?}, |
|
467
|
|
|
|
|
|
|
q{Invalid\ separator\ character\ .+?\ in\ attribute\ list}, |
|
468
|
|
|
|
|
|
|
q{Invalid\ strict\ version\ format\ \(.+?\)}, |
|
469
|
|
|
|
|
|
|
q{Invalid\ type\ \'.+?\'\ in\ .+?}, |
|
470
|
|
|
|
|
|
|
q{Invalid\ type\ in\ pack\:\ \'.+?\'}, |
|
471
|
|
|
|
|
|
|
q{Invalid\ type\ in\ unpack\:\ \'.+?\'}, |
|
472
|
|
|
|
|
|
|
q{Invalid\ version\ format\ \(.+?\)}, |
|
473
|
|
|
|
|
|
|
q{Invalid\ version\ format\ \(multiple\ underscores\)}, |
|
474
|
|
|
|
|
|
|
q{Invalid\ version\ format\ \(underscores\ before\ decimal\)}, |
|
475
|
|
|
|
|
|
|
q{Invalid\ version\ object}, |
|
476
|
|
|
|
|
|
|
q{Junk\ on\ end\ of\ regexp\ in\ regex\ m\/.+?\/}, |
|
477
|
|
|
|
|
|
|
q{Label\ not\ found\ for\ \"last\ .+?\"}, |
|
478
|
|
|
|
|
|
|
q{Label\ not\ found\ for\ \"next\ .+?\"}, |
|
479
|
|
|
|
|
|
|
q{Label\ not\ found\ for\ \"redo\ .+?\"}, |
|
480
|
|
|
|
|
|
|
q{Lexing\ code\ attempted\ to\ stuff\ non\-Latin\-1\ character\ into\ Latin\-1\ input}, |
|
481
|
|
|
|
|
|
|
q{Lexing\ code\ internal\ error\ \(.+?\)}, |
|
482
|
|
|
|
|
|
|
q{List\ form\ of\ piped\ open\ not\ implemented}, |
|
483
|
|
|
|
|
|
|
q{Lookbehind\ longer\ than\ .+?\ not\ implemented\ at\ \{\#\}\ mark\ in\ regex\ .+?}, |
|
484
|
|
|
|
|
|
|
q{Lookbehind\ longer\ than\ .+?\ not\ implemented\ before\ \<\<\ HERE\ .+?}, |
|
485
|
|
|
|
|
|
|
q{Lookbehind\ longer\ than\ .+?\ not\ implemented\ in\ regex\ m\/.+?\/}, |
|
486
|
|
|
|
|
|
|
q{Lookbehind\ longer\ than\ .+?\ not\ implemented\ in\ regex\;}, |
|
487
|
|
|
|
|
|
|
q{Lookbehind\ longer\ than\ .+?\ not\ implemented\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
488
|
|
|
|
|
|
|
q{Lost\ precision\ when\ .+?\ \%f\ by\ 1}, |
|
489
|
|
|
|
|
|
|
q{Lvalue\ subs\ returning\ .+?\ not\ implemented\ yet}, |
|
490
|
|
|
|
|
|
|
q{Magical\ list\ constants\ are\ not\ supported}, |
|
491
|
|
|
|
|
|
|
q{Malformed\ PERLLIB_PREFIX}, |
|
492
|
|
|
|
|
|
|
q{Malformed\ UTF\-16\ surrogate}, |
|
493
|
|
|
|
|
|
|
q{Malformed\ UTF\-8\ character\ \(.+?\)}, |
|
494
|
|
|
|
|
|
|
q{Malformed\ UTF\-8\ character\ immediately\ after\ \'.+?\'}, |
|
495
|
|
|
|
|
|
|
q{Malformed\ UTF\-8\ returned\ by\ \\N}, |
|
496
|
|
|
|
|
|
|
q{Malformed\ UTF\-8\ returned\ by\ \\N\{.+?\}\ immediately\ after\ \'.+?\'}, |
|
497
|
|
|
|
|
|
|
q{Malformed\ UTF\-8\ string\ in\ \'.+?\'\ format\ in\ unpack}, |
|
498
|
|
|
|
|
|
|
q{Malformed\ UTF\-8\ string\ in\ pack}, |
|
499
|
|
|
|
|
|
|
q{Malformed\ UTF\-8\ string\ in\ unpack}, |
|
500
|
|
|
|
|
|
|
q{Malformed\ integer\ in\ \[\]\ in\ \ pack}, |
|
501
|
|
|
|
|
|
|
q{Malformed\ integer\ in\ \[\]\ in\ pack}, |
|
502
|
|
|
|
|
|
|
q{Malformed\ integer\ in\ \[\]\ in\ unpack}, |
|
503
|
|
|
|
|
|
|
q{Malformed\ prototype\ for\ .+?\:\ .+?}, |
|
504
|
|
|
|
|
|
|
q{Mandatory\ parameter\ follows\ optional\ parameter}, |
|
505
|
|
|
|
|
|
|
q{Matched\ non\-Unicode\ code\ point\ 0x.+?\ against\ Unicode\ property\;\ may}, |
|
506
|
|
|
|
|
|
|
q{Maximal\ count\ of\ pending\ signals\ \(.+?\)\ exceeded}, |
|
507
|
|
|
|
|
|
|
q{Method\ .+?\ not\ permitted}, |
|
508
|
|
|
|
|
|
|
q{Method\ for\ operation\ .+?\ not\ found\ in\ package\ .+?\ during\ blessing}, |
|
509
|
|
|
|
|
|
|
q{Might\ be\ a\ runaway\ multi\-line\ .+?\ string\ starting\ on\ line\ .+?}, |
|
510
|
|
|
|
|
|
|
q{Misplaced\ _\ in\ number}, |
|
511
|
|
|
|
|
|
|
q{Missing\ .+?brace.+?\ on\ \\N\{\}}, |
|
512
|
|
|
|
|
|
|
q{Missing\ \$\ on\ loop\ variable}, |
|
513
|
|
|
|
|
|
|
q{Missing\ \'\]\'\ in\ prototype\ for\ .+?\ \:\ .+?}, |
|
514
|
|
|
|
|
|
|
q{Missing\ argument\ in\ .+?}, |
|
515
|
|
|
|
|
|
|
q{Missing\ argument\ to\ \-.+?}, |
|
516
|
|
|
|
|
|
|
q{Missing\ braces\ on\ \\N\{\}}, |
|
517
|
|
|
|
|
|
|
q{Missing\ braces\ on\ \\N\{\}\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in\ m\/.+?\/}, |
|
518
|
|
|
|
|
|
|
q{Missing\ braces\ on\ \\N\{\}\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
519
|
|
|
|
|
|
|
q{Missing\ braces\ on\ \\o\{\}}, |
|
520
|
|
|
|
|
|
|
q{Missing\ comma\ after\ first\ argument\ to\ .+?\ function}, |
|
521
|
|
|
|
|
|
|
q{Missing\ command\ in\ piped\ open}, |
|
522
|
|
|
|
|
|
|
q{Missing\ control\ char\ name\ in\ \\c}, |
|
523
|
|
|
|
|
|
|
q{Missing\ name\ in\ \".+?\ sub\"}, |
|
524
|
|
|
|
|
|
|
q{Missing\ name\ in\ \"my\ sub\"}, |
|
525
|
|
|
|
|
|
|
q{Missing\ right\ brace\ on\ .+?}, |
|
526
|
|
|
|
|
|
|
q{Missing\ right\ brace\ on\ \\.+?\{\}\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in\ m\/.+?\/}, |
|
527
|
|
|
|
|
|
|
q{Missing\ right\ brace\ on\ \\.+?\{\}\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
528
|
|
|
|
|
|
|
q{Missing\ right\ brace\ on\ \\N\{\}\ or\ unescaped\ left\ brace\ after\ \\N}, |
|
529
|
|
|
|
|
|
|
q{Missing\ right\ brace\ on\ \\\\N\{\}\ or\ unescaped\ left\ brace\ after\ \\\\N}, |
|
530
|
|
|
|
|
|
|
q{Missing\ right\ curly\ or\ square\ bracket}, |
|
531
|
|
|
|
|
|
|
q{Modification\ of\ a\ read\-only\ value\ attempted}, |
|
532
|
|
|
|
|
|
|
q{Modification\ of\ non\-creatable\ array\ value\ attempted\,\ .+?}, |
|
533
|
|
|
|
|
|
|
q{Modification\ of\ non\-creatable\ array\ value\ attempted\,\ subscript\ .+?}, |
|
534
|
|
|
|
|
|
|
q{Modification\ of\ non\-creatable\ hash\ value\ attempted\,\ .+?}, |
|
535
|
|
|
|
|
|
|
q{Modification\ of\ non\-creatable\ hash\ value\ attempted\,\ subscript\ \".+?\"}, |
|
536
|
|
|
|
|
|
|
q{Module\ name\ must\ be\ constant}, |
|
537
|
|
|
|
|
|
|
q{Module\ name\ required\ with\ \-.+?\ option}, |
|
538
|
|
|
|
|
|
|
q{More\ than\ one\ argument\ to\ \'.+?\'\ open}, |
|
539
|
|
|
|
|
|
|
q{More\ than\ one\ argument\ to\ open}, |
|
540
|
|
|
|
|
|
|
q{Multidimensional\ syntax\ .+?\ not\ supported}, |
|
541
|
|
|
|
|
|
|
q{NULL\ OP\ IN\ RUN}, |
|
542
|
|
|
|
|
|
|
q{NULL\ regexp\ argument}, |
|
543
|
|
|
|
|
|
|
q{NULL\ regexp\ parameter}, |
|
544
|
|
|
|
|
|
|
q{Name\ \".+?\:\:.+?\"\ used\ only\ once\:\ possible\ typo}, |
|
545
|
|
|
|
|
|
|
q{Need\ exactly\ 3\ octal\ digits\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in\ m\/.+?\/}, |
|
546
|
|
|
|
|
|
|
q{Need\ exactly\ 3\ octal\ digits\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
547
|
|
|
|
|
|
|
q{Negative\ \'\/\'\ count\ in\ unpack}, |
|
548
|
|
|
|
|
|
|
q{Negative\ length}, |
|
549
|
|
|
|
|
|
|
q{Negative\ offset\ to\ vec\ in\ lvalue\ context}, |
|
550
|
|
|
|
|
|
|
q{Nested\ quantifiers\ before\ \<\<\ HERE\ in\ regex\ m\/.+?\/}, |
|
551
|
|
|
|
|
|
|
q{Nested\ quantifiers\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in\ m\/.+?\/}, |
|
552
|
|
|
|
|
|
|
q{Nested\ quantifiers\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
553
|
|
|
|
|
|
|
q{Newline\ in\ left\-justified\ string\ for\ .+?}, |
|
554
|
|
|
|
|
|
|
q{No\ .+?\ allowed\ while\ running\ setuid}, |
|
555
|
|
|
|
|
|
|
q{No\ .+?\ specified\ for\ \-.+?}, |
|
556
|
|
|
|
|
|
|
q{No\ B\<\-e\>\ allowed\ in\ setuid\ scripts}, |
|
557
|
|
|
|
|
|
|
q{No\ DB\:\:DB\ routine\ defined}, |
|
558
|
|
|
|
|
|
|
q{No\ DB\:\:sub\ routine\ defined}, |
|
559
|
|
|
|
|
|
|
q{No\ DBsub\ routine}, |
|
560
|
|
|
|
|
|
|
q{No\ Perl\ script\ found\ in\ input}, |
|
561
|
|
|
|
|
|
|
q{No\ \#\!\ line}, |
|
562
|
|
|
|
|
|
|
q{No\ code\ specified\ for\ \-.+?}, |
|
563
|
|
|
|
|
|
|
q{No\ comma\ allowed\ after\ .+?}, |
|
564
|
|
|
|
|
|
|
q{No\ command\ into\ which\ to\ pipe\ on\ command\ line}, |
|
565
|
|
|
|
|
|
|
q{No\ dbm\ on\ this\ machine}, |
|
566
|
|
|
|
|
|
|
q{No\ directory\ specified\ for\ \-I}, |
|
567
|
|
|
|
|
|
|
q{No\ error\ file\ after\ 2\>\ or\ 2\>\>\ on\ command\ line}, |
|
568
|
|
|
|
|
|
|
q{No\ group\ ending\ character\ \'.+?\'\ found\ in\ template}, |
|
569
|
|
|
|
|
|
|
q{No\ input\ file\ after\ \<\ on\ command\ line}, |
|
570
|
|
|
|
|
|
|
q{No\ next\:\:method\ \'.+?\'\ found\ for\ .+?}, |
|
571
|
|
|
|
|
|
|
q{No\ output\ file\ after\ \>\ on\ command\ line}, |
|
572
|
|
|
|
|
|
|
q{No\ output\ file\ after\ \>\ or\ \>\>\ on\ command\ line}, |
|
573
|
|
|
|
|
|
|
q{No\ package\ name\ allowed\ for\ variable\ .+?\ in\ \"our\"}, |
|
574
|
|
|
|
|
|
|
q{No\ setregid\ available}, |
|
575
|
|
|
|
|
|
|
q{No\ setreuid\ available}, |
|
576
|
|
|
|
|
|
|
q{No\ space\ allowed\ after\ \-.+?}, |
|
577
|
|
|
|
|
|
|
q{No\ such\ class\ .+?}, |
|
578
|
|
|
|
|
|
|
q{No\ such\ class\ field\ \".+?\"\ in\ variable\ .+?\ of\ type\ .+?}, |
|
579
|
|
|
|
|
|
|
q{No\ such\ hook\:\ .+?}, |
|
580
|
|
|
|
|
|
|
q{No\ such\ pipe\ open}, |
|
581
|
|
|
|
|
|
|
q{No\ such\ pseudo\-hash\ field\ \".+?\"}, |
|
582
|
|
|
|
|
|
|
q{No\ such\ pseudo\-hash\ field\ \".+?\"\ in\ variable\ .+?\ of\ type\ .+?}, |
|
583
|
|
|
|
|
|
|
q{No\ such\ signal\:\ SIG.+?}, |
|
584
|
|
|
|
|
|
|
q{Non\-hex\ character\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in\ m\/.+?\/}, |
|
585
|
|
|
|
|
|
|
q{Non\-hex\ character\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
586
|
|
|
|
|
|
|
q{Non\-octal\ character\ \'.+?\'\.\ \ Resolved\ as\ \".+?\"}, |
|
587
|
|
|
|
|
|
|
q{Non\-octal\ character\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in\ m\/.+?\/}, |
|
588
|
|
|
|
|
|
|
q{Non\-octal\ character\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
589
|
|
|
|
|
|
|
q{Non\-string\ passed\ as\ bitmask}, |
|
590
|
|
|
|
|
|
|
q{Not\ a\ CODE\ reference}, |
|
591
|
|
|
|
|
|
|
q{Not\ a\ GLOB\ reference}, |
|
592
|
|
|
|
|
|
|
q{Not\ a\ HASH\ reference}, |
|
593
|
|
|
|
|
|
|
q{Not\ a\ SCALAR\ reference}, |
|
594
|
|
|
|
|
|
|
q{Not\ a\ format\ reference}, |
|
595
|
|
|
|
|
|
|
q{Not\ a\ perl\ script}, |
|
596
|
|
|
|
|
|
|
q{Not\ a\ subroutine\ reference}, |
|
597
|
|
|
|
|
|
|
q{Not\ a\ subroutine\ reference\ in\ overload\ table}, |
|
598
|
|
|
|
|
|
|
q{Not\ an\ ARRAY\ reference}, |
|
599
|
|
|
|
|
|
|
q{Not\ an\ unblessed\ ARRAY\ reference}, |
|
600
|
|
|
|
|
|
|
q{Not\ enough\ arguments\ for\ .+?}, |
|
601
|
|
|
|
|
|
|
q{Not\ enough\ format\ arguments}, |
|
602
|
|
|
|
|
|
|
q{Null\ filename\ used}, |
|
603
|
|
|
|
|
|
|
q{Null\ picture\ in\ formline}, |
|
604
|
|
|
|
|
|
|
q{Null\ realloc}, |
|
605
|
|
|
|
|
|
|
q{Number\ too\ long}, |
|
606
|
|
|
|
|
|
|
q{Number\ with\ no\ digits}, |
|
607
|
|
|
|
|
|
|
q{Octal\ number\ \>\ 037777777777\ non\-portable}, |
|
608
|
|
|
|
|
|
|
q{Octal\ number\ in\ vector\ unsupported}, |
|
609
|
|
|
|
|
|
|
q{Odd\ name\/value\ argument\ for\ subroutine}, |
|
610
|
|
|
|
|
|
|
q{Odd\ number\ of\ arguments\ for\ overload\:\:constant}, |
|
611
|
|
|
|
|
|
|
q{Odd\ number\ of\ elements\ in\ anonymous\ hash}, |
|
612
|
|
|
|
|
|
|
q{Odd\ number\ of\ elements\ in\ hash\ assignment}, |
|
613
|
|
|
|
|
|
|
q{Offset\ outside\ string}, |
|
614
|
|
|
|
|
|
|
q{Opening\ dirhandle\ .+?\ also\ as\ a\ file}, |
|
615
|
|
|
|
|
|
|
q{Opening\ filehandle\ .+?\ also\ as\ a\ directory}, |
|
616
|
|
|
|
|
|
|
q{Operand\ with\ no\ preceding\ operator\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in}, |
|
617
|
|
|
|
|
|
|
q{Operand\ with\ no\ preceding\ operator\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
618
|
|
|
|
|
|
|
q{Operation\ \".+?\"\ returns\ its\ argument\ for\ UTF\-16\ surrogate\ U\+.+?}, |
|
619
|
|
|
|
|
|
|
q{Operation\ \".+?\"\ returns\ its\ argument\ for\ non\-Unicode\ code\ point\ 0x.+?}, |
|
620
|
|
|
|
|
|
|
q{Operation\ \".+?\"\:\ no\ method\ found\,\ .+?}, |
|
621
|
|
|
|
|
|
|
q{Operation\ \`.+?\'\:\ no\ method\ found\,\ .+?}, |
|
622
|
|
|
|
|
|
|
q{Operator\ or\ semicolon\ missing\ before\ .+?}, |
|
623
|
|
|
|
|
|
|
q{Optional\ parameter\ lacks\ default\ expression}, |
|
624
|
|
|
|
|
|
|
q{Out\ of\ memory\ during\ .+?\ extend}, |
|
625
|
|
|
|
|
|
|
q{Out\ of\ memory\ during\ \"large\"\ request\ for\ .+?}, |
|
626
|
|
|
|
|
|
|
q{Out\ of\ memory\ during\ request\ for\ .+?}, |
|
627
|
|
|
|
|
|
|
q{Out\ of\ memory\ during\ ridiculously\ large\ request}, |
|
628
|
|
|
|
|
|
|
q{Out\ of\ memory\ for\ yacc\ stack}, |
|
629
|
|
|
|
|
|
|
q{Out\ of\ memory\!}, |
|
630
|
|
|
|
|
|
|
q{Overloaded\ dereference\ did\ not\ return\ a\ reference}, |
|
631
|
|
|
|
|
|
|
q{Overloaded\ qr\ did\ not\ return\ a\ REGEXP}, |
|
632
|
|
|
|
|
|
|
q{PERL_SH_DIR\ too\ long}, |
|
633
|
|
|
|
|
|
|
q{PERL_SIGNALS\ illegal\:\ \".+?\"}, |
|
634
|
|
|
|
|
|
|
q{POSIX\ \ syntax\ \[\.\ \.\]\ is\ reserved\ for\ future\ extensions}, |
|
635
|
|
|
|
|
|
|
q{POSIX\ class\ \[\:.+?\:\]\ unknown}, |
|
636
|
|
|
|
|
|
|
q{POSIX\ class\ \[\:.+?\:\]\ unknown\ in\ regex\;}, |
|
637
|
|
|
|
|
|
|
q{POSIX\ class\ \[\:.+?\:\]\ unknown\ in\ regex\;\ marked\ by\ S\<\<\ \<\-\-\ HERE\ in\ m\/.+?\/\ \>\>}, |
|
638
|
|
|
|
|
|
|
q{POSIX\ class\ \[\:.+?\:\]\ unknown\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
639
|
|
|
|
|
|
|
q{POSIX\ getpgrp\ can\'t\ take\ an\ argument}, |
|
640
|
|
|
|
|
|
|
q{POSIX\ syntax\ \[.+?\ .+?\]\ belongs\ inside\ character\ classes\ in\ regex\;\ marked\ by\ }, |
|
641
|
|
|
|
|
|
|
q{POSIX\ syntax\ \[.+?\]\ belongs\ inside\ character\ classes}, |
|
642
|
|
|
|
|
|
|
q{POSIX\ syntax\ \[.+?\]\ belongs\ inside\ character\ classes\ in\ regex\;}, |
|
643
|
|
|
|
|
|
|
q{POSIX\ syntax\ \[.+?\]\ belongs\ inside\ character\ classes\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
644
|
|
|
|
|
|
|
q{POSIX\ syntax\ \[\.\ \.\]\ is\ reserved\ for\ future\ extensions\ in\ regex\;}, |
|
645
|
|
|
|
|
|
|
q{POSIX\ syntax\ \[\.\ \.\]\ is\ reserved\ for\ future\ extensions\ in\ regex\;\ marked\ by\ }, |
|
646
|
|
|
|
|
|
|
q{POSIX\ syntax\ \[\.\ \.\]\ is\ reserved\ for\ future\ extensions\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
647
|
|
|
|
|
|
|
q{POSIX\ syntax\ \[\=\ \=\]\ is\ reserved\ for\ future\ extensions}, |
|
648
|
|
|
|
|
|
|
q{POSIX\ syntax\ \[\=\ \=\]\ is\ reserved\ for\ future\ extensions\ in\ regex\;}, |
|
649
|
|
|
|
|
|
|
q{POSIX\ syntax\ \[\=\ \=\]\ is\ reserved\ for\ future\ extensions\ in\ regex\;\ marked\ by\ }, |
|
650
|
|
|
|
|
|
|
q{POSIX\ syntax\ \[\=\ \=\]\ is\ reserved\ for\ future\ extensions\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
651
|
|
|
|
|
|
|
q{P\ must\ have\ an\ explicit\ size}, |
|
652
|
|
|
|
|
|
|
q{Parentheses\ missing\ around\ \".+?\"\ list}, |
|
653
|
|
|
|
|
|
|
q{Parsing\ code\ internal\ error\ \(.+?\)}, |
|
654
|
|
|
|
|
|
|
q{Passing\ malformed\ UTF\-8\ to\ \".+?\"\ is\ deprecated}, |
|
655
|
|
|
|
|
|
|
q{Pattern\ subroutine\ nesting\ without\ pos\ change\ exceeded\ limit\ in\ regex}, |
|
656
|
|
|
|
|
|
|
q{Pattern\ subroutine\ nesting\ without\ pos\ change\ exceeded\ limit\ in\ regex\;\ }, |
|
657
|
|
|
|
|
|
|
q{Pattern\ subroutine\ nesting\ without\ pos\ change\ exceeded\ limit\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
658
|
|
|
|
|
|
|
q{Perl\ .+?\ required\ \(did\ you\ mean\ .+?\?\)\-\-this\ is\ only\ .+?\,\ stopped}, |
|
659
|
|
|
|
|
|
|
q{Perl\ .+?\ required\-\-this\ is\ only\ .+?\,\ stopped}, |
|
660
|
|
|
|
|
|
|
q{Perl\ .+?\ required\-\-this\ is\ only\ version\ .+?\,\ stopped}, |
|
661
|
|
|
|
|
|
|
q{Perl\ \%3\.3f\ required\-\-this\ is\ only\ version\ .+?\,\ stopped}, |
|
662
|
|
|
|
|
|
|
q{Perl\ folding\ rules\ are\ not\ up\-to\-date\ for\ 0x.+?\;\ please\ use\ the\ perlbug\ }, |
|
663
|
|
|
|
|
|
|
q{Perl\ folding\ rules\ are\ not\ up\-to\-date\ for\ 0x.+?\;\ please\ use\ the\ perlbug\ utility\ to\ report}, |
|
664
|
|
|
|
|
|
|
q{Perl_my_.+?\(\)\ not\ available}, |
|
665
|
|
|
|
|
|
|
q{Perl_pmflag\(\)\ is\ deprecated\,\ and\ will\ be\ removed\ from\ the\ XS\ API}, |
|
666
|
|
|
|
|
|
|
q{Perls\ since\ .+?\ too\ modern\-\-this\ is\ .+?\,\ stopped}, |
|
667
|
|
|
|
|
|
|
q{Permission\ denied}, |
|
668
|
|
|
|
|
|
|
q{Possible\ Y2K\ bug\:\ .+?}, |
|
669
|
|
|
|
|
|
|
q{Possible\ attempt\ to\ put\ comments\ in\ qw\(\)\ list}, |
|
670
|
|
|
|
|
|
|
q{Possible\ attempt\ to\ separate\ words\ with\ commas}, |
|
671
|
|
|
|
|
|
|
q{Possible\ memory\ corruption\:\ .+?\ overflowed\ 3rd\ argument}, |
|
672
|
|
|
|
|
|
|
q{Possible\ precedence\ issue\ with\ control\ flow\ operator}, |
|
673
|
|
|
|
|
|
|
q{Possible\ precedence\ problem\ on\ bitwise\ .+?\ operator}, |
|
674
|
|
|
|
|
|
|
q{Possible\ unintended\ interpolation\ of\ .+?\ in\ string}, |
|
675
|
|
|
|
|
|
|
q{Possible\ unintended\ interpolation\ of\ \$\\\ in\ regex}, |
|
676
|
|
|
|
|
|
|
q{Postfix\ dereference\ is\ experimental}, |
|
677
|
|
|
|
|
|
|
q{Precedence\ problem\:\ open\ .+?\ should\ be\ open\(.+?\)}, |
|
678
|
|
|
|
|
|
|
q{Premature\ end\ of\ script\ headers}, |
|
679
|
|
|
|
|
|
|
q{Process\ terminated\ by\ SIG.+?}, |
|
680
|
|
|
|
|
|
|
q{Property\ \'.+?\'\ is\ unknown\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in\ m\/.+?\/}, |
|
681
|
|
|
|
|
|
|
q{Property\ \'.+?\'\ is\ unknown\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
682
|
|
|
|
|
|
|
q{Prototype\ \'.+?\'\ overridden\ by\ attribute\ \'prototype\(.+?\)\'\ in\ .+?}, |
|
683
|
|
|
|
|
|
|
q{Prototype\ after\ \'.+?\'\ for\ .+?\ \:\ .+?}, |
|
684
|
|
|
|
|
|
|
q{Prototype\ mismatch\:\ .+?\ vs\ .+?}, |
|
685
|
|
|
|
|
|
|
q{Prototype\ not\ terminated}, |
|
686
|
|
|
|
|
|
|
q{Pseudo\-hashes\ are\ deprecated}, |
|
687
|
|
|
|
|
|
|
q{Quantifier\ \{n\,m\}\ with\ n\ \>\ m\ can\'t\ match\ in\ regex}, |
|
688
|
|
|
|
|
|
|
q{Quantifier\ \{n\,m\}\ with\ n\ \>\ m\ can\'t\ match\ in\ regex\;\ marked\ by}, |
|
689
|
|
|
|
|
|
|
q{Quantifier\ \{n\,m\}\ with\ n\ \>\ m\ can\'t\ match\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
690
|
|
|
|
|
|
|
q{Quantifier\ follows\ nothing\ before\ \<\<\ HERE\ in\ regex\ m\/.+?\/}, |
|
691
|
|
|
|
|
|
|
q{Quantifier\ follows\ nothing\ in\ regex\;}, |
|
692
|
|
|
|
|
|
|
q{Quantifier\ follows\ nothing\ in\ regex\;\ marked\ by\ S\<\<\ \<\-\-\ HERE\ in\ m\/.+?\/\ \>\>}, |
|
693
|
|
|
|
|
|
|
q{Quantifier\ follows\ nothing\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
694
|
|
|
|
|
|
|
q{Quantifier\ in\ \{\,\}\ bigger\ than\ .+?\ before\ \<\<\ HERE\ in\ regex\ m\/.+?\/}, |
|
695
|
|
|
|
|
|
|
q{Quantifier\ in\ \{\,\}\ bigger\ than\ .+?\ in\ regex\;}, |
|
696
|
|
|
|
|
|
|
q{Quantifier\ in\ \{\,\}\ bigger\ than\ .+?\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in}, |
|
697
|
|
|
|
|
|
|
q{Quantifier\ in\ \{\,\}\ bigger\ than\ .+?\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
698
|
|
|
|
|
|
|
q{Quantifier\ unexpected\ on\ zero\-length\ expression\ before\ \<\<\ HERE\ .+?}, |
|
699
|
|
|
|
|
|
|
q{Quantifier\ unexpected\ on\ zero\-length\ expression\ in\ regex\;\ marked\ by\ \<\-\-\ }, |
|
700
|
|
|
|
|
|
|
q{Quantifier\ unexpected\ on\ zero\-length\ expression\;}, |
|
701
|
|
|
|
|
|
|
q{Quantifier\ unexpected\ on\ zero\-length\ expression\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
702
|
|
|
|
|
|
|
q{Range\ iterator\ outside\ integer\ range}, |
|
703
|
|
|
|
|
|
|
q{Reallocation\ too\ large\:\ .+?}, |
|
704
|
|
|
|
|
|
|
q{Recompile\ perl\ with\ B\<\-D\>DEBUGGING\ to\ use\ B\<\-D\>\ switch}, |
|
705
|
|
|
|
|
|
|
q{Recursive\ call\ to\ Perl_load_module\ in\ PerlIO_find_layer}, |
|
706
|
|
|
|
|
|
|
q{Recursive\ inheritance\ detected\ in\ package\ \'.+?\'}, |
|
707
|
|
|
|
|
|
|
q{Recursive\ inheritance\ detected\ while\ looking\ for\ method\ .+?}, |
|
708
|
|
|
|
|
|
|
q{Recursive\ inheritance\ detected\ while\ looking\ for\ method\ \'.+?\'\ in\ package\ \'.+?\'}, |
|
709
|
|
|
|
|
|
|
q{Reference\ found\ where\ even\-sized\ list\ expected}, |
|
710
|
|
|
|
|
|
|
q{Reference\ is\ already\ weak}, |
|
711
|
|
|
|
|
|
|
q{Reference\ miscount\ in\ sv_replace\(\)}, |
|
712
|
|
|
|
|
|
|
q{Reference\ to\ invalid\ group\ 0}, |
|
713
|
|
|
|
|
|
|
q{Reference\ to\ invalid\ group\ 0\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in\ m\/.+?\/}, |
|
714
|
|
|
|
|
|
|
q{Reference\ to\ invalid\ group\ 0\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
715
|
|
|
|
|
|
|
q{Reference\ to\ nonexistent\ group\ before\ \<\<\ HERE\ in\ regex\ m\/.+?\/}, |
|
716
|
|
|
|
|
|
|
q{Reference\ to\ nonexistent\ group\ in\ regex\;}, |
|
717
|
|
|
|
|
|
|
q{Reference\ to\ nonexistent\ group\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in}, |
|
718
|
|
|
|
|
|
|
q{Reference\ to\ nonexistent\ group\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
719
|
|
|
|
|
|
|
q{Reference\ to\ nonexistent\ named\ group\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>}, |
|
720
|
|
|
|
|
|
|
q{Reference\ to\ nonexistent\ named\ group\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
721
|
|
|
|
|
|
|
q{Reference\ to\ nonexistent\ or\ unclosed\ group\ in\ regex\;\ marked\ by}, |
|
722
|
|
|
|
|
|
|
q{Reference\ to\ nonexistent\ or\ unclosed\ group\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ }, |
|
723
|
|
|
|
|
|
|
q{Reference\ to\ nonexistent\ or\ unclosed\ group\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
724
|
|
|
|
|
|
|
q{Regexp\ modifier\ \".+?\"\ may\ appear\ a\ maximum\ of\ twice\ in\ regex\;\ marked}, |
|
725
|
|
|
|
|
|
|
q{Regexp\ modifier\ \".+?\"\ may\ not\ appear\ after\ the\ \"\-\"}, |
|
726
|
|
|
|
|
|
|
q{Regexp\ modifier\ \".+?\"\ may\ not\ appear\ after\ the\ \"\-\"\ in\ regex\;\ marked\ by\ \<\-\-\ }, |
|
727
|
|
|
|
|
|
|
q{Regexp\ modifier\ \".+?\"\ may\ not\ appear\ twice\ in\ regex\;\ marked\ by\ \<\-\-}, |
|
728
|
|
|
|
|
|
|
q{Regexp\ modifier\ \"\/.+?\"\ may\ appear\ a\ maximum\ of\ twice}, |
|
729
|
|
|
|
|
|
|
q{Regexp\ modifier\ \"\/.+?\"\ may\ not\ appear\ twice}, |
|
730
|
|
|
|
|
|
|
q{Regexp\ modifiers\ \".+?\"\ and\ \".+?\"\ are\ mutually\ exclusive\ in\ regex\;}, |
|
731
|
|
|
|
|
|
|
q{Regexp\ modifiers\ \"\/.+?\"\ and\ \"\/.+?\"\ are\ mutually\ exclusive}, |
|
732
|
|
|
|
|
|
|
q{Regexp\ out\ of\ space}, |
|
733
|
|
|
|
|
|
|
q{Regexp\ out\ of\ space\ in\ regex\ m\/.+?\/}, |
|
734
|
|
|
|
|
|
|
q{Repeat\ count\ in\ pack\ overflows}, |
|
735
|
|
|
|
|
|
|
q{Repeat\ count\ in\ unpack\ overflows}, |
|
736
|
|
|
|
|
|
|
q{Repeated\ format\ line\ will\ never\ terminate\ \(\~\~\ and\ \@\#\ incompatible\)}, |
|
737
|
|
|
|
|
|
|
q{Repeated\ format\ line\ will\ never\ terminate\ \(\~\~\ and\ \@\#\)}, |
|
738
|
|
|
|
|
|
|
q{Replacement\ list\ is\ longer\ than\ search\ list}, |
|
739
|
|
|
|
|
|
|
q{Reversed\ .+?\=\ operator}, |
|
740
|
|
|
|
|
|
|
q{Runaway\ format}, |
|
741
|
|
|
|
|
|
|
q{SIG.+?\ handler\ \".+?\"\ not\ defined}, |
|
742
|
|
|
|
|
|
|
q{SWASHNEW\ didn\'t\ return\ an\ HV\ ref}, |
|
743
|
|
|
|
|
|
|
q{Scalar\ value\ \@.+?\[.+?\]\ better\ written\ as\ \$.+?\[.+?\]}, |
|
744
|
|
|
|
|
|
|
q{Scalar\ value\ \@.+?\{.+?\}\ better\ written\ as\ \$.+?\{.+?\}}, |
|
745
|
|
|
|
|
|
|
q{Scalars\ leaked\:\ .+?}, |
|
746
|
|
|
|
|
|
|
q{Script\ is\ not\ setuid\/setgid\ in\ suidperl}, |
|
747
|
|
|
|
|
|
|
q{Search\ pattern\ not\ terminated}, |
|
748
|
|
|
|
|
|
|
q{Search\ pattern\ not\ terminated\ or\ ternary\ operator\ parsed\ as\ search\ pattern}, |
|
749
|
|
|
|
|
|
|
q{Self\-ties\ of\ arrays\ and\ hashes\ are\ not\ supported}, |
|
750
|
|
|
|
|
|
|
q{Semicolon\ seems\ to\ be\ missing}, |
|
751
|
|
|
|
|
|
|
q{Sequence\ \(\?.+?\.\.\.\ not\ terminated\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>}, |
|
752
|
|
|
|
|
|
|
q{Sequence\ \(\?.+?\.\.\.\)\ not\ implemented}, |
|
753
|
|
|
|
|
|
|
q{Sequence\ \(\?.+?\.\.\.\)\ not\ implemented\ before\ \<\<\ HERE\ mark\ in\ .+?}, |
|
754
|
|
|
|
|
|
|
q{Sequence\ \(\?.+?\.\.\.\)\ not\ implemented\ in\ regex\;}, |
|
755
|
|
|
|
|
|
|
q{Sequence\ \(\?.+?\.\.\.\)\ not\ implemented\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in}, |
|
756
|
|
|
|
|
|
|
q{Sequence\ \(\?.+?\.\.\.\)\ not\ implemented\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
757
|
|
|
|
|
|
|
q{Sequence\ \(\?.+?\.\.\.\)\ not\ recognized}, |
|
758
|
|
|
|
|
|
|
q{Sequence\ \(\?.+?\.\.\.\)\ not\ recognized\ before\ \<\<\ HERE\ mark\ in\ .+?}, |
|
759
|
|
|
|
|
|
|
q{Sequence\ \(\?.+?\.\.\.\)\ not\ recognized\ in\ regex\;}, |
|
760
|
|
|
|
|
|
|
q{Sequence\ \(\?.+?\.\.\.\)\ not\ recognized\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in}, |
|
761
|
|
|
|
|
|
|
q{Sequence\ \(\?.+?\.\.\.\)\ not\ recognized\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
762
|
|
|
|
|
|
|
q{Sequence\ \(\?R\)\ not\ terminated\ in\ regex\ m\/.+?\/}, |
|
763
|
|
|
|
|
|
|
q{Sequence\ \(\?\ incomplete}, |
|
764
|
|
|
|
|
|
|
q{Sequence\ \(\?\ incomplete\ before\ \<\<\ HERE\ mark\ in\ regex\ m\/.+?\/}, |
|
765
|
|
|
|
|
|
|
q{Sequence\ \(\?\ incomplete\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in\ m\/.+?\/}, |
|
766
|
|
|
|
|
|
|
q{Sequence\ \(\?\ incomplete\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
767
|
|
|
|
|
|
|
q{Sequence\ \(\?\#\.\.\.\ not\ terminated}, |
|
768
|
|
|
|
|
|
|
q{Sequence\ \(\?\#\.\.\.\ not\ terminated\ in\ regex\ m\/.+?\/}, |
|
769
|
|
|
|
|
|
|
q{Sequence\ \(\?\#\.\.\.\ not\ terminated\ in\ regex\;}, |
|
770
|
|
|
|
|
|
|
q{Sequence\ \(\?\#\.\.\.\ not\ terminated\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
771
|
|
|
|
|
|
|
q{Sequence\ \(\?\&\.\.\.\ not\ terminated\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in}, |
|
772
|
|
|
|
|
|
|
q{Sequence\ \(\?\(.+?\.\.\.\ not\ terminated\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>}, |
|
773
|
|
|
|
|
|
|
q{Sequence\ \(\?\{\.\.\.\}\)\ not\ terminated\ or\ not\ \{\}\-balanced\ in\ .+?}, |
|
774
|
|
|
|
|
|
|
q{Sequence\ \(\?\{\.\.\.\}\)\ not\ terminated\ or\ not\ \{\}\-balanced\ in\ regex\;}, |
|
775
|
|
|
|
|
|
|
q{Sequence\ \(\?\{\.\.\.\}\)\ not\ terminated\ or\ not\ \{\}\-balanced\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
776
|
|
|
|
|
|
|
q{Sequence\ \(\?\{\.\.\.\}\)\ not\ terminated\ with\ \'\)\'}, |
|
777
|
|
|
|
|
|
|
q{Sequence\ \?P\=\.\.\.\ not\ terminated\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in}, |
|
778
|
|
|
|
|
|
|
q{Sequence\ \\.+?\.\.\.\ not\ terminated\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in}, |
|
779
|
|
|
|
|
|
|
q{Sequence\ \\.+?\.\.\.\ not\ terminated\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
780
|
|
|
|
|
|
|
q{Sequence\ \\\\.+?\.\.\.\ not\ terminated\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
781
|
|
|
|
|
|
|
q{Server\ error}, |
|
782
|
|
|
|
|
|
|
q{Server\ error\ \(a\.k\.a\.\ \"500\ Server\ error\"\)}, |
|
783
|
|
|
|
|
|
|
q{Setting\ \$\/\ to\ .+?\ reference\ is\ forbidden}, |
|
784
|
|
|
|
|
|
|
q{Setting\ \$\/\ to\ a\ reference\ to\ .+?\ as\ a\ form\ of\ slurp\ is\ deprecated\,\ treating\ as\ undef}, |
|
785
|
|
|
|
|
|
|
q{Setuid\ script\ not\ plain\ file}, |
|
786
|
|
|
|
|
|
|
q{Setuid\/gid\ script\ is\ writable\ by\ world}, |
|
787
|
|
|
|
|
|
|
q{Slab\ leaked\ from\ cv\ \%p}, |
|
788
|
|
|
|
|
|
|
q{Slurpy\ parameter\ not\ last}, |
|
789
|
|
|
|
|
|
|
q{Smart\ matching\ a\ non\-overloaded\ object\ breaks\ encapsulation}, |
|
790
|
|
|
|
|
|
|
q{Smartmatch\ is\ experimental}, |
|
791
|
|
|
|
|
|
|
q{Sort\ subroutine\ didn\'t\ return\ a\ numeric\ value}, |
|
792
|
|
|
|
|
|
|
q{Sort\ subroutine\ didn\'t\ return\ single\ value}, |
|
793
|
|
|
|
|
|
|
q{Source\ filters\ apply\ only\ to\ byte\ streams}, |
|
794
|
|
|
|
|
|
|
q{Split\ loop}, |
|
795
|
|
|
|
|
|
|
q{Stat\ on\ unopened\ file\ \<.+?\>}, |
|
796
|
|
|
|
|
|
|
q{Statement\ unlikely\ to\ be\ reached}, |
|
797
|
|
|
|
|
|
|
q{Strange\ \*\+\?\{\}\ on\ zero\-length\ expression}, |
|
798
|
|
|
|
|
|
|
q{Strings\ with\ code\ points\ over\ 0xFF\ may\ not\ be\ mapped\ into\ in\-memory\ file\ handles}, |
|
799
|
|
|
|
|
|
|
q{Stub\ found\ while\ resolving\ method\ \".+?\"\ overloading\ \".+?\"}, |
|
800
|
|
|
|
|
|
|
q{Stub\ found\ while\ resolving\ method\ \".+?\"\ overloading\ \".+?\"\ in\ package\ \".+?\"}, |
|
801
|
|
|
|
|
|
|
q{Stub\ found\ while\ resolving\ method\ \`.+?\'\ overloading\ .+?}, |
|
802
|
|
|
|
|
|
|
q{Stub\ found\ while\ resolving\ method\ \`.+?\'\ overloading\ \`.+?\'\ in\ package\ \`.+?\'}, |
|
803
|
|
|
|
|
|
|
q{Subroutine\ .+?\ redefined}, |
|
804
|
|
|
|
|
|
|
q{Subroutine\ \"\&.+?\"\ is\ not\ available}, |
|
805
|
|
|
|
|
|
|
q{Substitution\ loop}, |
|
806
|
|
|
|
|
|
|
q{Substitution\ pattern\ not\ terminated}, |
|
807
|
|
|
|
|
|
|
q{Substitution\ replacement\ not\ terminated}, |
|
808
|
|
|
|
|
|
|
q{Switch\ \(\?\(condition\)\.\.\.\ contains\ too\ many\ branches\ before\ \<\<\ HE.+?}, |
|
809
|
|
|
|
|
|
|
q{Switch\ \(\?\(condition\)\.\.\.\ contains\ too\ many\ branches\ in\ regex\;}, |
|
810
|
|
|
|
|
|
|
q{Switch\ \(\?\(condition\)\.\.\.\ contains\ too\ many\ branches\ in\ regex\;\ marked\ by\ }, |
|
811
|
|
|
|
|
|
|
q{Switch\ \(\?\(condition\)\.\.\.\ contains\ too\ many\ branches\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
812
|
|
|
|
|
|
|
q{Switch\ condition\ not\ recognized\ before\ \<\<\ HERE\ in\ regex\ m\/.+?\/}, |
|
813
|
|
|
|
|
|
|
q{Switch\ condition\ not\ recognized\ in\ regex\;}, |
|
814
|
|
|
|
|
|
|
q{Switch\ condition\ not\ recognized\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in}, |
|
815
|
|
|
|
|
|
|
q{Switch\ condition\ not\ recognized\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
816
|
|
|
|
|
|
|
q{Syntax\ error\ in\ \(\?\[\.\.\.\]\)\ in\ regex\ m\/.+?\/}, |
|
817
|
|
|
|
|
|
|
q{System\ V\ .+?\ is\ not\ implemented\ on\ this\ machine}, |
|
818
|
|
|
|
|
|
|
q{Target\ of\ goto\ is\ too\ deeply\ nested}, |
|
819
|
|
|
|
|
|
|
q{Test\ on\ unopened\ file\ \<.+?\>}, |
|
820
|
|
|
|
|
|
|
q{That\ use\ of\ \$\[\ is\ unsupported}, |
|
821
|
|
|
|
|
|
|
q{The\ .+?\ feature\ is\ experimental}, |
|
822
|
|
|
|
|
|
|
q{The\ .+?\ function\ is\ unimplemented}, |
|
823
|
|
|
|
|
|
|
q{The\ \'unique\'\ attribute\ may\ only\ be\ applied\ to\ \'our\'\ variables}, |
|
824
|
|
|
|
|
|
|
q{The\ crypt\(\)\ function\ is\ unimplemented\ due\ to\ excessive\ paranoia}, |
|
825
|
|
|
|
|
|
|
q{The\ crypt\(\)\ function\ is\ unimplemented\ due\ to\ excessive\ paranoia\.}, |
|
826
|
|
|
|
|
|
|
q{The\ lexical_subs\ feature\ is\ experimental}, |
|
827
|
|
|
|
|
|
|
q{The\ regex_sets\ feature\ is\ experimental}, |
|
828
|
|
|
|
|
|
|
q{The\ signatures\ feature\ is\ experimental}, |
|
829
|
|
|
|
|
|
|
q{The\ stat\ preceding\ .+?\ wasn\'t\ an\ lstat}, |
|
830
|
|
|
|
|
|
|
q{The\ stat\ preceding\ C\<\-l\ _\>\ wasn\'t\ an\ lstat}, |
|
831
|
|
|
|
|
|
|
q{This\ Perl\ can\'t\ reset\ CRTL\ environ\ elements\ \(.+?\)}, |
|
832
|
|
|
|
|
|
|
q{This\ Perl\ can\'t\ set\ CRTL\ environ\ elements\ \(.+?\=.+?\)}, |
|
833
|
|
|
|
|
|
|
q{This\ Perl\ has\ not\ been\ built\ with\ support\ for\ randomized\ hash\ key\ traversal\ but\ something\ called\ Perl_hv_rand_set\(\)\.}, |
|
834
|
|
|
|
|
|
|
q{Tied\ variable\ freed\ while\ still\ in\ use}, |
|
835
|
|
|
|
|
|
|
q{To.+?\:\ illegal\ mapping\ \'.+?\'}, |
|
836
|
|
|
|
|
|
|
q{Too\ deeply\ nested\ \(\)\-groups}, |
|
837
|
|
|
|
|
|
|
q{Too\ few\ args\ to\ syscall}, |
|
838
|
|
|
|
|
|
|
q{Too\ few\ arguments\ for\ subroutine}, |
|
839
|
|
|
|
|
|
|
q{Too\ late\ for\ \"B\<\-T\>\"\ option}, |
|
840
|
|
|
|
|
|
|
q{Too\ late\ for\ \"\-.+?\"\ option}, |
|
841
|
|
|
|
|
|
|
q{Too\ late\ to\ run\ .+?\ block}, |
|
842
|
|
|
|
|
|
|
q{Too\ many\ \(\'s}, |
|
843
|
|
|
|
|
|
|
q{Too\ many\ \)\'s}, |
|
844
|
|
|
|
|
|
|
q{Too\ many\ args\ to\ syscall}, |
|
845
|
|
|
|
|
|
|
q{Too\ many\ arguments\ for\ .+?}, |
|
846
|
|
|
|
|
|
|
q{Too\ many\ arguments\ for\ subroutine}, |
|
847
|
|
|
|
|
|
|
q{Trailing\ \\\ in\ regex\ m\/.+?\/}, |
|
848
|
|
|
|
|
|
|
q{Trailing\ white\-space\ in\ a\ charnames\ alias\ definition\ is\ deprecated}, |
|
849
|
|
|
|
|
|
|
q{Transliteration\ pattern\ not\ terminated}, |
|
850
|
|
|
|
|
|
|
q{Transliteration\ replacement\ not\ terminated}, |
|
851
|
|
|
|
|
|
|
q{Type\ of\ arg\ .+?\ to\ .+?\ must\ be\ .+?\ \(not\ .+?\)}, |
|
852
|
|
|
|
|
|
|
q{Type\ of\ arg\ .+?\ to\ \&CORE\:\:.+?\ must\ be\ .+?}, |
|
853
|
|
|
|
|
|
|
q{Type\ of\ argument\ to\ .+?\ must\ be\ unblessed\ hashref\ or\ arrayref}, |
|
854
|
|
|
|
|
|
|
q{UTF\-16\ surrogate\ .+?}, |
|
855
|
|
|
|
|
|
|
q{UTF\-16\ surrogate\ U\+.+?}, |
|
856
|
|
|
|
|
|
|
q{Unable\ to\ create\ sub\ named\ \".+?\"}, |
|
857
|
|
|
|
|
|
|
q{Unbalanced\ context\:\ .+?\ more\ PUSHes\ than\ POPs}, |
|
858
|
|
|
|
|
|
|
q{Unbalanced\ saves\:\ .+?\ more\ saves\ than\ restores}, |
|
859
|
|
|
|
|
|
|
q{Unbalanced\ scopes\:\ .+?\ more\ ENTERs\ than\ LEAVEs}, |
|
860
|
|
|
|
|
|
|
q{Unbalanced\ string\ table\ refcount\:\ \(.+?\)\ for\ \".+?\"}, |
|
861
|
|
|
|
|
|
|
q{Unbalanced\ tmps\:\ .+?\ more\ allocs\ than\ frees}, |
|
862
|
|
|
|
|
|
|
q{Undefined\ format\ \".+?\"\ called}, |
|
863
|
|
|
|
|
|
|
q{Undefined\ sort\ subroutine\ \".+?\"\ called}, |
|
864
|
|
|
|
|
|
|
q{Undefined\ subroutine\ \&.+?\ called}, |
|
865
|
|
|
|
|
|
|
q{Undefined\ subroutine\ called}, |
|
866
|
|
|
|
|
|
|
q{Undefined\ subroutine\ in\ sort}, |
|
867
|
|
|
|
|
|
|
q{Undefined\ top\ format\ \".+?\"\ called}, |
|
868
|
|
|
|
|
|
|
q{Undefined\ value\ assigned\ to\ typeglob}, |
|
869
|
|
|
|
|
|
|
q{Unexpected\ \'\(\'\ with\ no\ preceding\ operator\ in\ regex\;\ marked\ by}, |
|
870
|
|
|
|
|
|
|
q{Unexpected\ \'\(\'\ with\ no\ preceding\ operator\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
871
|
|
|
|
|
|
|
q{Unexpected\ \'\)\'\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in\ m\/.+?\/}, |
|
872
|
|
|
|
|
|
|
q{Unexpected\ \'\)\'\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
873
|
|
|
|
|
|
|
q{Unexpected\ binary\ operator\ \'.+?\'\ with\ no\ preceding\ operand\ in\ regex\;}, |
|
874
|
|
|
|
|
|
|
q{Unexpected\ binary\ operator\ \'.+?\'\ with\ no\ preceding\ operand\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
875
|
|
|
|
|
|
|
q{Unexpected\ character\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in\ m\/.+?\/}, |
|
876
|
|
|
|
|
|
|
q{Unexpected\ character\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
877
|
|
|
|
|
|
|
q{Unexpected\ constant\ lvalue\ entersub\ entry\ via\ type\/targ\ .+?\:.+?}, |
|
878
|
|
|
|
|
|
|
q{Unexpected\ exit\ .+?}, |
|
879
|
|
|
|
|
|
|
q{Unexpected\ exit\ failure\ .+?}, |
|
880
|
|
|
|
|
|
|
q{Unicode\ character\ .+?\ is\ illegal}, |
|
881
|
|
|
|
|
|
|
q{Unicode\ non\-character\ .+?\ is\ illegal\ for\ interchange}, |
|
882
|
|
|
|
|
|
|
q{Unicode\ non\-character\ U\+.+?\ is\ illegal\ for\ open\ interchange}, |
|
883
|
|
|
|
|
|
|
q{Unicode\ surrogate\ U\+.+?\ is\ illegal\ in\ UTF\-8}, |
|
884
|
|
|
|
|
|
|
q{Unknown\ BYTEORDER}, |
|
885
|
|
|
|
|
|
|
q{Unknown\ PerlIO\ layer\ \".+?\"}, |
|
886
|
|
|
|
|
|
|
q{Unknown\ Unicode\ option\ letter\ \'.+?\'}, |
|
887
|
|
|
|
|
|
|
q{Unknown\ Unicode\ option\ value\ .+?}, |
|
888
|
|
|
|
|
|
|
q{Unknown\ \"re\"\ subpragma\ \'.+?\'\ \(known\ ones\ are\:\ .+?\)}, |
|
889
|
|
|
|
|
|
|
q{Unknown\ charname\ \'.+?\'}, |
|
890
|
|
|
|
|
|
|
q{Unknown\ error}, |
|
891
|
|
|
|
|
|
|
q{Unknown\ open\(\)\ mode\ \'.+?\'}, |
|
892
|
|
|
|
|
|
|
q{Unknown\ process\ .+?\ sent\ message\ to\ prime_env_iter\:\ .+?}, |
|
893
|
|
|
|
|
|
|
q{Unknown\ regex\ modifier\ \".+?\"}, |
|
894
|
|
|
|
|
|
|
q{Unknown\ switch\ condition\ \(\?\(.+?\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
895
|
|
|
|
|
|
|
q{Unknown\ switch\ condition\ \(\?\(\%\.2s\ before\ \<\<\ HERE\ in\ regex\ m\/.+?\/}, |
|
896
|
|
|
|
|
|
|
q{Unknown\ switch\ condition\ \(\?\(\%\.2s\ in\ regex\;}, |
|
897
|
|
|
|
|
|
|
q{Unknown\ switch\ condition\ \(\?\(\%\.2s\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
898
|
|
|
|
|
|
|
q{Unknown\ switch\ condition\ \(\?\(\.\.\.\)\)\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in}, |
|
899
|
|
|
|
|
|
|
q{Unknown\ verb\ pattern\ \'.+?\'\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in\ m\/.+?\/}, |
|
900
|
|
|
|
|
|
|
q{Unknown\ verb\ pattern\ \'.+?\'\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
901
|
|
|
|
|
|
|
q{Unknown\ warnings\ category\ \'.+?\'}, |
|
902
|
|
|
|
|
|
|
q{Unmatched\ \'.+?\'\ in\ POSIX\ class\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in}, |
|
903
|
|
|
|
|
|
|
q{Unmatched\ \'.+?\'\ in\ POSIX\ class\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
904
|
|
|
|
|
|
|
q{Unmatched\ \'\[\'\ in\ POSIX\ class\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in\ m\/.+?\/}, |
|
905
|
|
|
|
|
|
|
q{Unmatched\ \'\[\'\ in\ POSIX\ class\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
906
|
|
|
|
|
|
|
q{Unmatched\ \(\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in\ m\/.+?\/}, |
|
907
|
|
|
|
|
|
|
q{Unmatched\ \(\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
908
|
|
|
|
|
|
|
q{Unmatched\ \)\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in\ m\/.+?\/}, |
|
909
|
|
|
|
|
|
|
q{Unmatched\ \)\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
910
|
|
|
|
|
|
|
q{Unmatched\ \[\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in\ m\/.+?\/}, |
|
911
|
|
|
|
|
|
|
q{Unmatched\ \[\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
912
|
|
|
|
|
|
|
q{Unmatched\ right\ .+?\ bracket}, |
|
913
|
|
|
|
|
|
|
q{Unquoted\ string\ \".+?\"\ may\ clash\ with\ future\ reserved\ word}, |
|
914
|
|
|
|
|
|
|
q{Unrecognized\ character\ .+?}, |
|
915
|
|
|
|
|
|
|
q{Unrecognized\ character\ .+?\ in\ column\ .+?}, |
|
916
|
|
|
|
|
|
|
q{Unrecognized\ character\ .+?\;\ marked\ by\ S\<\<\-\-\ HERE\>\ after\ .+?\ near\ column}, |
|
917
|
|
|
|
|
|
|
q{Unrecognized\ character\ .+?\;\ marked\ by\ \<\-\-\ HERE\ after\ .+?\ near\ column\ .+?}, |
|
918
|
|
|
|
|
|
|
q{Unrecognized\ escape\ \\.+?\ in\ character\ class\ in\ regex\;\ marked\ by}, |
|
919
|
|
|
|
|
|
|
q{Unrecognized\ escape\ \\.+?\ in\ character\ class\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
920
|
|
|
|
|
|
|
q{Unrecognized\ escape\ \\.+?\ in\ character\ class\ passed\ through\ in\ regex\;\ }, |
|
921
|
|
|
|
|
|
|
q{Unrecognized\ escape\ \\.+?\ in\ character\ class\ passed\ through\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
922
|
|
|
|
|
|
|
q{Unrecognized\ escape\ \\.+?\ passed\ through}, |
|
923
|
|
|
|
|
|
|
q{Unrecognized\ escape\ \\.+?\ passed\ through\ in\ regex\;\ marked\ by}, |
|
924
|
|
|
|
|
|
|
q{Unrecognized\ escape\ \\.+?\ passed\ through\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
925
|
|
|
|
|
|
|
q{Unrecognized\ escape\ \\\\.+?\ in\ character\ class\ passed\ through\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
926
|
|
|
|
|
|
|
q{Unrecognized\ escape\ \\\\.+?\ passed\ through}, |
|
927
|
|
|
|
|
|
|
q{Unrecognized\ escape\ \\\\.+?\ passed\ through\ before\ \<\<\ HERE\ in\ m\/.+?\/}, |
|
928
|
|
|
|
|
|
|
q{Unrecognized\ escape\ \\\\.+?\ passed\ through\ in\ regex\;}, |
|
929
|
|
|
|
|
|
|
q{Unrecognized\ escape\ \\\\.+?\ passed\ through\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
930
|
|
|
|
|
|
|
q{Unrecognized\ signal\ name\ \".+?\"}, |
|
931
|
|
|
|
|
|
|
q{Unrecognized\ switch\:\ \-.+?\ \ \(\-h\ will\ show\ valid\ options\)}, |
|
932
|
|
|
|
|
|
|
q{Unsuccessful\ .+?\ on\ filename\ containing\ newline}, |
|
933
|
|
|
|
|
|
|
q{Unsupported\ directory\ function\ \".+?\"\ called}, |
|
934
|
|
|
|
|
|
|
q{Unsupported\ function\ .+?}, |
|
935
|
|
|
|
|
|
|
q{Unsupported\ function\ fork}, |
|
936
|
|
|
|
|
|
|
q{Unsupported\ script\ encoding}, |
|
937
|
|
|
|
|
|
|
q{Unsupported\ script\ encoding\ .+?}, |
|
938
|
|
|
|
|
|
|
q{Unsupported\ socket\ function\ \".+?\"\ called}, |
|
939
|
|
|
|
|
|
|
q{Unterminated\ \<\>\ operator}, |
|
940
|
|
|
|
|
|
|
q{Unterminated\ \\g\.\.\.\ pattern\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in\ m\/.+?\/}, |
|
941
|
|
|
|
|
|
|
q{Unterminated\ \\g\{\.\.\.\}\ pattern\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in\ m\/.+?\/}, |
|
942
|
|
|
|
|
|
|
q{Unterminated\ \\g\{\.\.\.\}\ pattern\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
943
|
|
|
|
|
|
|
q{Unterminated\ attribute\ list}, |
|
944
|
|
|
|
|
|
|
q{Unterminated\ attribute\ parameter\ in\ attribute\ list}, |
|
945
|
|
|
|
|
|
|
q{Unterminated\ compressed\ integer}, |
|
946
|
|
|
|
|
|
|
q{Unterminated\ delimiter\ for\ here\ document}, |
|
947
|
|
|
|
|
|
|
q{Unterminated\ verb\ pattern\ argument\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in}, |
|
948
|
|
|
|
|
|
|
q{Unterminated\ verb\ pattern\ argument\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
949
|
|
|
|
|
|
|
q{Unterminated\ verb\ pattern\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in\ m\/.+?\/}, |
|
950
|
|
|
|
|
|
|
q{Unterminated\ verb\ pattern\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
951
|
|
|
|
|
|
|
q{Usage\:\ POSIX\:\:.+?\(.+?\)}, |
|
952
|
|
|
|
|
|
|
q{Usage\:\ Win32\:\:.+?\(.+?\)}, |
|
953
|
|
|
|
|
|
|
q{Use\ \".+?\"\ instead\ of\ \".+?\"}, |
|
954
|
|
|
|
|
|
|
q{Use\ \\\\x\{\.\.\.\}\ for\ more\ than\ two\ hex\ characters\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
955
|
|
|
|
|
|
|
q{Use\ \\x\{\.\.\.\}\ for\ more\ than\ two\ hex\ characters\ in\ regex\;\ marked\ by}, |
|
956
|
|
|
|
|
|
|
q{Use\ of\ .+?\ in\ printf\ format\ not\ supported}, |
|
957
|
|
|
|
|
|
|
q{Use\ of\ .+?\ is\ deprecated}, |
|
958
|
|
|
|
|
|
|
q{Use\ of\ .+?\ on\ a\ handle\ without\ \*\ is\ deprecated}, |
|
959
|
|
|
|
|
|
|
q{Use\ of\ \"goto\"\ to\ jump\ into\ a\ construct\ is\ deprecated}, |
|
960
|
|
|
|
|
|
|
q{Use\ of\ \"package\"\ with\ no\ arguments\ is\ deprecated}, |
|
961
|
|
|
|
|
|
|
q{Use\ of\ \$\#\ is\ deprecated}, |
|
962
|
|
|
|
|
|
|
q{Use\ of\ \$\*\ is\ deprecated}, |
|
963
|
|
|
|
|
|
|
q{Use\ of\ \*glob\{FILEHANDLE\}\ is\ deprecated}, |
|
964
|
|
|
|
|
|
|
q{Use\ of\ \-l\ on\ filehandle.+?}, |
|
965
|
|
|
|
|
|
|
q{Use\ of\ \-l\ on\ filehandle\ .+?}, |
|
966
|
|
|
|
|
|
|
q{Use\ of\ \/c\ modifier\ is\ meaningless\ in\ s\/\/\/}, |
|
967
|
|
|
|
|
|
|
q{Use\ of\ \/c\ modifier\ is\ meaningless\ without\ \/g}, |
|
968
|
|
|
|
|
|
|
q{Use\ of\ \/g\ modifier\ is\ meaningless\ in\ split}, |
|
969
|
|
|
|
|
|
|
q{Use\ of\ \:\=\ for\ an\ empty\ attribute\ list\ is\ deprecated}, |
|
970
|
|
|
|
|
|
|
q{Use\ of\ \:\=\ for\ an\ empty\ attribute\ list\ is\ not\ allowed}, |
|
971
|
|
|
|
|
|
|
q{Use\ of\ \?PATTERN\?\ without\ explicit\ operator\ is\ deprecated}, |
|
972
|
|
|
|
|
|
|
q{Use\ of\ assignment\ to\ \$\[\ is\ deprecated}, |
|
973
|
|
|
|
|
|
|
q{Use\ of\ bare\ \<\<\ to\ mean\ \<\<\"\"\ is\ deprecated}, |
|
974
|
|
|
|
|
|
|
q{Use\ of\ chdir\(\'\'\)\ or\ chdir\(undef\)\ as\ chdir\(\)\ deprecated}, |
|
975
|
|
|
|
|
|
|
q{Use\ of\ comma\-less\ variable\ list\ is\ deprecated}, |
|
976
|
|
|
|
|
|
|
q{Use\ of\ each\(\)\ on\ hash\ after\ insertion\ without\ resetting\ hash\ iterator\ results\ in\ undefined\ behavior}, |
|
977
|
|
|
|
|
|
|
q{Use\ of\ freed\ value\ in\ iteration}, |
|
978
|
|
|
|
|
|
|
q{Use\ of\ implicit\ split\ to\ \@_\ is\ deprecated}, |
|
979
|
|
|
|
|
|
|
q{Use\ of\ inherited\ AUTOLOAD\ for\ non\-method\ .+?\(\)\ is\ deprecated}, |
|
980
|
|
|
|
|
|
|
q{Use\ of\ literal\ control\ characters\ in\ variable\ names\ is\ deprecated}, |
|
981
|
|
|
|
|
|
|
q{Use\ of\ my\ \$_\ is\ experimental}, |
|
982
|
|
|
|
|
|
|
q{Use\ of\ octal\ value\ above\ 377\ is\ deprecated}, |
|
983
|
|
|
|
|
|
|
q{Use\ of\ qw\(\.\.\.\)\ as\ parentheses\ is\ deprecated}, |
|
984
|
|
|
|
|
|
|
q{Use\ of\ reference\ \".+?\"\ as\ array\ index}, |
|
985
|
|
|
|
|
|
|
q{Use\ of\ reserved\ word\ \".+?\"\ is\ deprecated}, |
|
986
|
|
|
|
|
|
|
q{Use\ of\ state\ \$_\ is\ experimental}, |
|
987
|
|
|
|
|
|
|
q{Use\ of\ tainted\ arguments\ in\ .+?\ is\ deprecated}, |
|
988
|
|
|
|
|
|
|
q{Use\ of\ uninitialized\ value.+?}, |
|
989
|
|
|
|
|
|
|
q{Useless\ \(.+?.+?\)\ \-\ .+?use\ \/.+?\ modifier\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
990
|
|
|
|
|
|
|
q{Useless\ \(.+?c\)\ \-\ .+?use\ \/gc\ modifier\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
991
|
|
|
|
|
|
|
q{Useless\ \(\?.+?\)\ \-\ use\ \/.+?\ modifier\ in\ regex\;}, |
|
992
|
|
|
|
|
|
|
q{Useless\ \(\?.+?\)\ \-\ use\ \/.+?\ modifier\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in}, |
|
993
|
|
|
|
|
|
|
q{Useless\ \(\?.+?\)\ \-\ use\ \/.+?\ modifier\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
994
|
|
|
|
|
|
|
q{Useless\ \(\?\-.+?\)\ \-\ don\'t\ use\ \/.+?\ modifier\ in\ regex\;}, |
|
995
|
|
|
|
|
|
|
q{Useless\ \(\?\-.+?\)\ \-\ don\'t\ use\ \/.+?\ modifier\ in\ regex\;\ marked\ by}, |
|
996
|
|
|
|
|
|
|
q{Useless\ \(\?\-.+?\)\ \-\ don\'t\ use\ \/.+?\ modifier\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ }, |
|
997
|
|
|
|
|
|
|
q{Useless\ \(\?\-.+?\)\ \-\ don\'t\ use\ \/.+?\ modifier\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
998
|
|
|
|
|
|
|
q{Useless\ assignment\ to\ a\ temporary}, |
|
999
|
|
|
|
|
|
|
q{Useless\ localization\ of\ .+?}, |
|
1000
|
|
|
|
|
|
|
q{Useless\ use\ of\ .+?\ in\ void\ context}, |
|
1001
|
|
|
|
|
|
|
q{Useless\ use\ of\ .+?\ with\ no\ values}, |
|
1002
|
|
|
|
|
|
|
q{Useless\ use\ of\ \"re\"\ pragma}, |
|
1003
|
|
|
|
|
|
|
q{Useless\ use\ of\ \'\\\'\;\ doesn\'t\ escape\ metacharacter\ \'.+?\'}, |
|
1004
|
|
|
|
|
|
|
q{Useless\ use\ of\ \(\?\-p\)\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in\ m\/.+?\/}, |
|
1005
|
|
|
|
|
|
|
q{Useless\ use\ of\ \(\?\-p\)\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
1006
|
|
|
|
|
|
|
q{Useless\ use\ of\ \/d\ modifier\ in\ transliteration\ operator}, |
|
1007
|
|
|
|
|
|
|
q{Useless\ use\ of\ \\E}, |
|
1008
|
|
|
|
|
|
|
q{Useless\ use\ of\ greediness\ modifier\ \'.+?\'\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in\ m\/.+?\/}, |
|
1009
|
|
|
|
|
|
|
q{Useless\ use\ of\ sort\ in\ scalar\ context}, |
|
1010
|
|
|
|
|
|
|
q{User\-defined\ case\-mapping\ \'.+?\'\ is\ deprecated}, |
|
1011
|
|
|
|
|
|
|
q{Using\ \!\~\ with\ .+?\ doesn\'t\ make\ sense}, |
|
1012
|
|
|
|
|
|
|
q{Using\ a\ hash\ as\ a\ reference\ is\ deprecated}, |
|
1013
|
|
|
|
|
|
|
q{Using\ an\ array\ as\ a\ reference\ is\ deprecated}, |
|
1014
|
|
|
|
|
|
|
q{Using\ just\ the\ first\ character\ returned\ by\ \\N\{\}\ in\ character\ class}, |
|
1015
|
|
|
|
|
|
|
q{Using\ just\ the\ first\ character\ returned\ by\ \\N\{\}\ in\ character\ class\ in\ }, |
|
1016
|
|
|
|
|
|
|
q{Using\ just\ the\ first\ characters\ returned\ by\ \\N\{\}}, |
|
1017
|
|
|
|
|
|
|
q{Value\ of\ .+?\ can\ be\ \"0\"\;\ test\ with\ defined\(\)}, |
|
1018
|
|
|
|
|
|
|
q{Value\ of\ CLI\ symbol\ \".+?\"\ too\ long}, |
|
1019
|
|
|
|
|
|
|
q{Variable\ \".+?\"\ is\ not\ available}, |
|
1020
|
|
|
|
|
|
|
q{Variable\ \".+?\"\ is\ not\ imported.+?}, |
|
1021
|
|
|
|
|
|
|
q{Variable\ \".+?\"\ may\ be\ unavailable}, |
|
1022
|
|
|
|
|
|
|
q{Variable\ \".+?\"\ will\ not\ stay\ shared}, |
|
1023
|
|
|
|
|
|
|
q{Variable\ length\ lookbehind\ not\ implemented\ before\ \<\<\ HERE\ in\ .+?}, |
|
1024
|
|
|
|
|
|
|
q{Variable\ length\ lookbehind\ not\ implemented\ in\ m\/.+?\/}, |
|
1025
|
|
|
|
|
|
|
q{Variable\ length\ lookbehind\ not\ implemented\ in\ regex\ m\/.+?\/}, |
|
1026
|
|
|
|
|
|
|
q{Variable\ length\ lookbehind\ not\ implemented\ in\ regex\;}, |
|
1027
|
|
|
|
|
|
|
q{Variable\ length\ lookbehind\ not\ implemented\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
1028
|
|
|
|
|
|
|
q{Variable\ syntax}, |
|
1029
|
|
|
|
|
|
|
q{Verb\ pattern\ \'.+?\'\ has\ a\ mandatory\ argument\ in\ regex\;\ marked\ by}, |
|
1030
|
|
|
|
|
|
|
q{Verb\ pattern\ \'.+?\'\ has\ a\ mandatory\ argument\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ }, |
|
1031
|
|
|
|
|
|
|
q{Verb\ pattern\ \'.+?\'\ has\ a\ mandatory\ argument\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/\ }, |
|
1032
|
|
|
|
|
|
|
q{Verb\ pattern\ \'.+?\'\ may\ not\ have\ an\ argument\ in\ regex\;\ marked\ by}, |
|
1033
|
|
|
|
|
|
|
q{Verb\ pattern\ \'.+?\'\ may\ not\ have\ an\ argument\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ }, |
|
1034
|
|
|
|
|
|
|
q{Verb\ pattern\ \'.+?\'\ may\ not\ have\ an\ argument\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/\ }, |
|
1035
|
|
|
|
|
|
|
q{Version\ number\ must\ be\ a\ constant\ number}, |
|
1036
|
|
|
|
|
|
|
q{Version\ string\ \'.+?\'\ contains\ invalid\ data\;\ ignoring\:\ \'.+?\'}, |
|
1037
|
|
|
|
|
|
|
q{Warning\:\ Use\ of\ \".+?\"\ without\ parentheses\ is\ ambiguous}, |
|
1038
|
|
|
|
|
|
|
q{Warning\:\ something\'s\ wrong}, |
|
1039
|
|
|
|
|
|
|
q{Warning\:\ unable\ to\ close\ filehandle\ .+?\ properly}, |
|
1040
|
|
|
|
|
|
|
q{Wide\ character\ in\ .+?}, |
|
1041
|
|
|
|
|
|
|
q{Within\ \[\]\-length\ \'.+?\'\ not\ allowed}, |
|
1042
|
|
|
|
|
|
|
q{X\ outside\ of\ string}, |
|
1043
|
|
|
|
|
|
|
q{Xsub\ \".+?\"\ called\ in\ sort}, |
|
1044
|
|
|
|
|
|
|
q{Xsub\ called\ in\ sort}, |
|
1045
|
|
|
|
|
|
|
q{YOU\ HAVEN\'T\ DISABLED\ SET\-ID\ SCRIPTS\ IN\ THE\ KERNEL\ YET\!}, |
|
1046
|
|
|
|
|
|
|
q{You\ can\'t\ use\ C\<\-l\>\ on\ a\ filehandle}, |
|
1047
|
|
|
|
|
|
|
q{You\ need\ to\ quote\ \".+?\"}, |
|
1048
|
|
|
|
|
|
|
q{Your\ random\ numbers\ are\ not\ that\ random}, |
|
1049
|
|
|
|
|
|
|
q{Z\<\>500\ Server\ error}, |
|
1050
|
|
|
|
|
|
|
q{Zero\ length\ \\N\{\}\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in\ m\/.+?\/}, |
|
1051
|
|
|
|
|
|
|
q{\!\=\~\ should\ be\ \!\~}, |
|
1052
|
|
|
|
|
|
|
q{\".+?\"\ may\ clash\ with\ future\ reserved\ word}, |
|
1053
|
|
|
|
|
|
|
q{\".+?\"\ subroutine\ \&.+?\ masks\ earlier\ declaration\ in\ same\ .+?}, |
|
1054
|
|
|
|
|
|
|
q{\".+?\"\ variable\ .+?\ can\'t\ be\ in\ a\ package}, |
|
1055
|
|
|
|
|
|
|
q{\".+?\"\ variable\ .+?\ masks\ earlier\ declaration\ in\ same\ .+?}, |
|
1056
|
|
|
|
|
|
|
q{\"\-T\"\ is\ on\ the\ \#\!\ line\,\ it\ must\ also\ be\ used\ on\ the\ command\ line}, |
|
1057
|
|
|
|
|
|
|
q{\"\\B\{\"\ is\ deprecated\;\ use\ \"\\B\\\{\"\ instead}, |
|
1058
|
|
|
|
|
|
|
q{\"\\B\{\"\ is\ deprecated\;\ use\ \"\\B\\\{\"\ or\ \"\\B\[\{\]\"\ instead\ in\ regex\;\ marked}, |
|
1059
|
|
|
|
|
|
|
q{\"\\B\{\"\ is\ deprecated\;\ use\ \"\\B\\\{\"\ or\ \"\\B\[\{\]\"\ instead\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
1060
|
|
|
|
|
|
|
q{\"\\b\{\"\ is\ deprecated\;\ use\ \"\\b\\\{\"\ instead}, |
|
1061
|
|
|
|
|
|
|
q{\"\\b\{\"\ is\ deprecated\;\ use\ \"\\b\\\{\"\ or\ \"\\b\[\{\]\"\ instead\ in\ regex\;\ marked}, |
|
1062
|
|
|
|
|
|
|
q{\"\\b\{\"\ is\ deprecated\;\ use\ \"\\b\\\{\"\ or\ \"\\b\[\{\]\"\ instead\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
1063
|
|
|
|
|
|
|
#q{\"\\c.+?\"\ is\ more\ clearly\ written\ simply\ as\ \".+?\"}, |
|
1064
|
|
|
|
|
|
|
#q{\"\\c\{\"\ is\ deprecated\ and\ is\ more\ clearly\ written\ as\ \"\;\"}, # seriously this is nonsense |
|
1065
|
|
|
|
|
|
|
q{\"my\ .+?\"\ used\ in\ sort\ comparison}, |
|
1066
|
|
|
|
|
|
|
q{\"my\ sub\"\ not\ yet\ implemented}, |
|
1067
|
|
|
|
|
|
|
q{\"my\"\ variable\ .+?\ can\'t\ be\ in\ a\ package}, |
|
1068
|
|
|
|
|
|
|
q{\"no\"\ not\ allowed\ in\ expression}, |
|
1069
|
|
|
|
|
|
|
q{\"our\"\ variable\ .+?\ redeclared}, |
|
1070
|
|
|
|
|
|
|
q{\"state\ .+?\"\ used\ in\ sort\ comparison}, |
|
1071
|
|
|
|
|
|
|
q{\"state\"\ variable\ .+?\ can\'t\ be\ in\ a\ package}, |
|
1072
|
|
|
|
|
|
|
q{\"use\"\ not\ allowed\ in\ expression}, |
|
1073
|
|
|
|
|
|
|
q{\$\#\ is\ no\ longer\ supported}, |
|
1074
|
|
|
|
|
|
|
q{\$\*\ is\ no\ longer\ supported}, |
|
1075
|
|
|
|
|
|
|
q{\$\[\ used\ in\ .+?\ \(did\ you\ mean\ \$\]\ \?\)}, |
|
1076
|
|
|
|
|
|
|
q{\%.+?\[.+?\]\ in\ scalar\ context\ better\ written\ as\ \$.+?\[.+?\]}, |
|
1077
|
|
|
|
|
|
|
q{\%.+?\{.+?\}\ in\ scalar\ context\ better\ written\ as\ \$.+?\{.+?\}}, |
|
1078
|
|
|
|
|
|
|
q{\%ENV\ is\ aliased\ to\ .+?}, |
|
1079
|
|
|
|
|
|
|
q{\%\ may\ not\ be\ used\ in\ pack}, |
|
1080
|
|
|
|
|
|
|
q{\%\ may\ only\ be\ used\ in\ unpack}, |
|
1081
|
|
|
|
|
|
|
q{\&CORE\:\:.+?\ cannot\ be\ called\ directly}, |
|
1082
|
|
|
|
|
|
|
q{\'.+?\'\ allowed\ only\ after\ types\ .+?}, |
|
1083
|
|
|
|
|
|
|
q{\'.+?\'\ allowed\ only\ after\ types\ .+?\ in\ .+?}, |
|
1084
|
|
|
|
|
|
|
q{\'.+?\'\ is\ not\ a\ code\ reference}, |
|
1085
|
|
|
|
|
|
|
q{\'.+?\'\ is\ not\ an\ overloadable\ type}, |
|
1086
|
|
|
|
|
|
|
q{\'.+?\'\ resolved\ to\ \'\\o\{.+?\}.+?\'}, |
|
1087
|
|
|
|
|
|
|
q{\'.+?\'\ trapped\ by\ operation\ mask}, |
|
1088
|
|
|
|
|
|
|
q{\'P\'\ must\ have\ an\ explicit\ size\ in\ unpack}, |
|
1089
|
|
|
|
|
|
|
q{\'X\'\ outside\ of\ string}, |
|
1090
|
|
|
|
|
|
|
q{\'\!\'\ allowed\ only\ after\ types\ .+?}, |
|
1091
|
|
|
|
|
|
|
q{\'\%\'\ may\ not\ be\ used\ in\ pack}, |
|
1092
|
|
|
|
|
|
|
q{\'\.\'\ outside\ of\ string\ in\ pack}, |
|
1093
|
|
|
|
|
|
|
q{\'\/\'\ does\ not\ take\ a\ repeat\ count}, |
|
1094
|
|
|
|
|
|
|
q{\'\/\'\ must\ be\ followed\ by\ \'a\*\'\,\ \'A\*\'\ or\ \'Z\*\'}, |
|
1095
|
|
|
|
|
|
|
q{\'\/\'\ must\ follow\ a\ numeric\ type\ in\ unpack}, |
|
1096
|
|
|
|
|
|
|
q{\'\@\'\ outside\ of\ string\ in\ unpack}, |
|
1097
|
|
|
|
|
|
|
q{\'\@\'\ outside\ of\ string\ with\ malformed\ UTF\-8\ in\ unpack}, |
|
1098
|
|
|
|
|
|
|
q{\'\|\'\ and\ \'\<\'\ may\ not\ both\ be\ specified\ on\ command\ line}, |
|
1099
|
|
|
|
|
|
|
q{\'\|\'\ and\ \'\>\'\ may\ not\ both\ be\ specified\ on\ command\ line}, |
|
1100
|
|
|
|
|
|
|
q{\'x\'\ outside\ of\ string\ in\ unpack}, |
|
1101
|
|
|
|
|
|
|
q{\(Did\ you\ mean\ \"local\"\ instead\ of\ \"our\"\?\)}, |
|
1102
|
|
|
|
|
|
|
q{\(Did\ you\ mean\ \$\ or\ \@\ instead\ of\ \%\?\)}, |
|
1103
|
|
|
|
|
|
|
q{\(Did\ you\ mean\ \&.+?\ instead\?\)}, |
|
1104
|
|
|
|
|
|
|
q{\(Do\ you\ need\ to\ predeclare\ .+?\?\)}, |
|
1105
|
|
|
|
|
|
|
q{\(Missing\ operator\ before\ .+?\?\)}, |
|
1106
|
|
|
|
|
|
|
q{\(Missing\ semicolon\ on\ previous\ line\?\)}, |
|
1107
|
|
|
|
|
|
|
q{\(\)\-group\ starts\ with\ a\ count}, |
|
1108
|
|
|
|
|
|
|
q{\(\?\(DEFINE\)\.\.\.\.\)\ does\ not\ allow\ branches\ in\ regex\;\ marked\ by}, |
|
1109
|
|
|
|
|
|
|
q{\(\?\(DEFINE\)\.\.\.\.\)\ does\ not\ allow\ branches\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ }, |
|
1110
|
|
|
|
|
|
|
q{\(\?\(DEFINE\)\.\.\.\.\)\ does\ not\ allow\ branches\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
1111
|
|
|
|
|
|
|
q{\(\?\[\.\.\.\]\)\ not\ valid\ in\ locale\ in\ regex\;\ marked\ by\ S\<\<\-\-\ HERE\>\ in\ m\/.+?\/}, |
|
1112
|
|
|
|
|
|
|
q{\(\?\[\.\.\.\]\)\ not\ valid\ in\ locale\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
1113
|
|
|
|
|
|
|
q{\(in\ cleanup\)\ .+?}, |
|
1114
|
|
|
|
|
|
|
q{\(perhaps\ you\ forgot\ to\ load\ \".+?\"\?\)}, |
|
1115
|
|
|
|
|
|
|
q{\-.+?\ on\ unopened\ filehandle\ .+?}, |
|
1116
|
|
|
|
|
|
|
q{\-i\ used\ with\ no\ filenames\ on\ the\ command\ line\,\ reading\ from\ STDIN}, |
|
1117
|
|
|
|
|
|
|
q{\/.+?\/\ should\ probably\ be\ written\ as\ \".+?\"}, |
|
1118
|
|
|
|
|
|
|
q{\/.+?\/\:\ Unrecognized\ escape\ \\\\.+?\ in\ character\ class\ passed\ through}, |
|
1119
|
|
|
|
|
|
|
q{\/.+?\/\:\ Unrecognized\ escape\ \\\\.+?\ passed\ through}, |
|
1120
|
|
|
|
|
|
|
q{\/\ cannot\ take\ a\ count}, |
|
1121
|
|
|
|
|
|
|
q{\/\ must\ be\ followed\ by\ a\*\,\ A\*\ or\ Z\*}, |
|
1122
|
|
|
|
|
|
|
q{\/\ must\ be\ followed\ by\ a\,\ A\ or\ Z}, |
|
1123
|
|
|
|
|
|
|
q{\/\ must\ follow\ a\ numeric\ type}, |
|
1124
|
|
|
|
|
|
|
q{\<\>\ should\ be\ quotes}, |
|
1125
|
|
|
|
|
|
|
q{\?\+\*\ follows\ nothing\ in\ regexp}, |
|
1126
|
|
|
|
|
|
|
q{\@\ outside\ of\ string}, |
|
1127
|
|
|
|
|
|
|
q{\\.+?\ better\ written\ as\ \$.+?}, |
|
1128
|
|
|
|
|
|
|
q{\\1\ better\ written\ as\ \$1}, |
|
1129
|
|
|
|
|
|
|
q{\\N\ in\ a\ character\ class\ must\ be\ a\ named\ character\:\ \\N\{\.\.\.\}}, |
|
1130
|
|
|
|
|
|
|
q{\\N\ in\ a\ character\ class\ must\ be\ a\ named\ character\:\ \\N\{\.\.\.\}\ in\ regex\;\ }, |
|
1131
|
|
|
|
|
|
|
q{\\N\{NAME\}\ must\ be\ resolved\ by\ the\ lexer}, |
|
1132
|
|
|
|
|
|
|
q{\\N\{NAME\}\ must\ be\ resolved\ by\ the\ lexer\ in\ regex\;\ marked\ by}, |
|
1133
|
|
|
|
|
|
|
q{\\N\{NAME\}\ must\ be\ resolved\ by\ the\ lexer\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
1134
|
|
|
|
|
|
|
q{\\N\{\}\ in\ character\ class\ restricted\ to\ one\ character\ in\ regex\;\ marked}, |
|
1135
|
|
|
|
|
|
|
q{\\\\N\ in\ a\ character\ class\ must\ be\ a\ named\ character\:\ \\\\N\{\.\.\.\}}, |
|
1136
|
|
|
|
|
|
|
q{\\\\N\{NAME\}\ must\ be\ resolved\ by\ the\ lexer}, |
|
1137
|
|
|
|
|
|
|
q{\\p\{\}\ uses\ Unicode\ rules\,\ not\ locale\ rules}, |
|
1138
|
|
|
|
|
|
|
q{\`.+?\'\ is\ not\ a\ code\ reference}, |
|
1139
|
|
|
|
|
|
|
q{\`.+?\'\ is\ not\ an\ overloadable\ type}, |
|
1140
|
|
|
|
|
|
|
q{accept\(\)\ on\ closed\ socket\ .+?}, |
|
1141
|
|
|
|
|
|
|
q{assertion\ botched\:\ .+?}, |
|
1142
|
|
|
|
|
|
|
q{av_reify\ called\ on\ tied\ array}, |
|
1143
|
|
|
|
|
|
|
q{bind\(\)\ on\ closed\ socket\ .+?}, |
|
1144
|
|
|
|
|
|
|
q{binmode\(\)\ on\ closed\ filehandle\ .+?}, |
|
1145
|
|
|
|
|
|
|
q{chmod\(\)\ mode\ argument\ is\ missing\ initial\ 0}, |
|
1146
|
|
|
|
|
|
|
q{close\(\)\ on\ unopened\ filehandle\ .+?}, |
|
1147
|
|
|
|
|
|
|
q{closedir\(\)\ attempted\ on\ invalid\ dirhandle\ .+?}, |
|
1148
|
|
|
|
|
|
|
q{cond_broadcast\(\)\ called\ on\ unlocked\ variable}, |
|
1149
|
|
|
|
|
|
|
q{cond_signal\(\)\ called\ on\ unlocked\ variable}, |
|
1150
|
|
|
|
|
|
|
q{connect\(\)\ on\ closed\ socket\ .+?}, |
|
1151
|
|
|
|
|
|
|
q{constant\(.+?\)\:\ .+?}, |
|
1152
|
|
|
|
|
|
|
q{corrupted\ regexp\ pointers}, |
|
1153
|
|
|
|
|
|
|
q{corrupted\ regexp\ program}, |
|
1154
|
|
|
|
|
|
|
q{defined\(\%hash\)\ is\ deprecated}, |
|
1155
|
|
|
|
|
|
|
q{defined\(\@array\)\ is\ deprecated}, |
|
1156
|
|
|
|
|
|
|
q{delete\ argument\ is\ index\/value\ array\ slice\,\ use\ array\ slice}, |
|
1157
|
|
|
|
|
|
|
q{delete\ argument\ is\ key\/value\ hash\ slice\,\ use\ hash\ slice}, |
|
1158
|
|
|
|
|
|
|
q{delete\ argument\ is\ not\ a\ HASH\ or\ ARRAY\ element\ or\ slice}, |
|
1159
|
|
|
|
|
|
|
q{do_study\:\ out\ of\ memory}, |
|
1160
|
|
|
|
|
|
|
q{dump\ is\ not\ supported}, |
|
1161
|
|
|
|
|
|
|
q{dump\(\)\ better\ written\ as\ CORE\:\:dump\(\)}, |
|
1162
|
|
|
|
|
|
|
q{each\ on\ reference\ is\ experimental}, |
|
1163
|
|
|
|
|
|
|
q{elseif\ should\ be\ elsif}, |
|
1164
|
|
|
|
|
|
|
q{entering\ effective\ .+?\ failed}, |
|
1165
|
|
|
|
|
|
|
q{exec\?\ I\'m\ not\ \*that\*\ kind\ of\ operating\ system}, |
|
1166
|
|
|
|
|
|
|
q{exists\ argument\ is\ not\ a\ HASH\ or\ ARRAY\ element\ or\ a\ subroutine}, |
|
1167
|
|
|
|
|
|
|
q{exists\ argument\ is\ not\ a\ subroutine\ name}, |
|
1168
|
|
|
|
|
|
|
q{false\ \[\]\ range\ \".+?\"\ in\ regexp}, |
|
1169
|
|
|
|
|
|
|
q{fcntl\ is\ not\ implemented}, |
|
1170
|
|
|
|
|
|
|
q{flock\(\)\ on\ closed\ filehandle\ .+?}, |
|
1171
|
|
|
|
|
|
|
q{gdbm\ store\ returned\ .+?\,\ errno\ .+?\,\ key\ \".+?\"}, |
|
1172
|
|
|
|
|
|
|
q{get.+?name\(\)\ on\ closed\ socket\ .+?}, |
|
1173
|
|
|
|
|
|
|
q{gethostent\ not\ implemented}, |
|
1174
|
|
|
|
|
|
|
q{getpwnam\ returned\ invalid\ UIC\ \%\#o\ for\ user\ \".+?\"}, |
|
1175
|
|
|
|
|
|
|
q{getsockopt\(\)\ on\ closed\ socket\ .+?}, |
|
1176
|
|
|
|
|
|
|
q{given\ is\ experimental}, |
|
1177
|
|
|
|
|
|
|
q{glob\ failed\ \(.+?\)}, |
|
1178
|
|
|
|
|
|
|
q{gmtime\(\%\.0f\)\ too\ large}, |
|
1179
|
|
|
|
|
|
|
q{gmtime\(\%\.0f\)\ too\ small}, |
|
1180
|
|
|
|
|
|
|
q{gmtime\(\%f\)\ failed}, |
|
1181
|
|
|
|
|
|
|
q{gmtime\(\%f\)\ too\ large}, |
|
1182
|
|
|
|
|
|
|
q{gmtime\(\%f\)\ too\ small}, |
|
1183
|
|
|
|
|
|
|
q{goto\ must\ have\ label}, |
|
1184
|
|
|
|
|
|
|
q{internal\ \%\p\ might\ conflict\ with\ future\ printf\ extensions}, |
|
1185
|
|
|
|
|
|
|
q{internal\ disaster\ in\ regexp}, |
|
1186
|
|
|
|
|
|
|
q{internal\ urp\ in\ regexp\ at\ \/.+?\/}, |
|
1187
|
|
|
|
|
|
|
q{invalid\ \[\]\ range\ \".+?\"\ in\ regexp}, |
|
1188
|
|
|
|
|
|
|
q{invalid\ option\ \-D.+?\,\ use\ \-D\'\'\ to\ see\ choices}, |
|
1189
|
|
|
|
|
|
|
q{ioctl\ is\ not\ implemented}, |
|
1190
|
|
|
|
|
|
|
q{ioctl\(\)\ on\ unopened\ .+?}, |
|
1191
|
|
|
|
|
|
|
q{junk\ on\ end\ of\ regexp}, |
|
1192
|
|
|
|
|
|
|
q{keys\ on\ reference\ is\ experimental}, |
|
1193
|
|
|
|
|
|
|
q{leaving\ effective\ .+?\ failed}, |
|
1194
|
|
|
|
|
|
|
q{length\(\)\ used\ on\ .+?}, |
|
1195
|
|
|
|
|
|
|
q{length\(\)\ used\ on\ .+?\ \(did\ you\ mean\ \"scalar\(.+?\)\"\?\)}, |
|
1196
|
|
|
|
|
|
|
q{length\/code\ after\ end\ of\ string\ in\ unpack}, |
|
1197
|
|
|
|
|
|
|
q{listen\(\)\ on\ closed\ socket\ .+?}, |
|
1198
|
|
|
|
|
|
|
q{localtime\(\%\.0f\)\ too\ large}, |
|
1199
|
|
|
|
|
|
|
q{localtime\(\%\.0f\)\ too\ small}, |
|
1200
|
|
|
|
|
|
|
q{localtime\(\%f\)\ failed}, |
|
1201
|
|
|
|
|
|
|
q{localtime\(\%f\)\ too\ large}, |
|
1202
|
|
|
|
|
|
|
q{localtime\(\%f\)\ too\ small}, |
|
1203
|
|
|
|
|
|
|
q{lstat\(\)\ on\ filehandle.+?}, |
|
1204
|
|
|
|
|
|
|
q{lstat\(\)\ on\ filehandle\ .+?}, |
|
1205
|
|
|
|
|
|
|
q{lvalue\ attribute\ .+?\ already\-defined\ subroutine}, |
|
1206
|
|
|
|
|
|
|
q{lvalue\ attribute\ ignored\ after\ the\ subroutine\ has\ been\ defined}, |
|
1207
|
|
|
|
|
|
|
q{mprotect\ RW\ for\ COW\ string\ \%p\ .+?\ failed\ with\ .+?}, |
|
1208
|
|
|
|
|
|
|
q{mprotect\ RW\ for\ \%p\ .+?\ failed\ with\ .+?}, |
|
1209
|
|
|
|
|
|
|
q{mprotect\ for\ COW\ string\ \%p\ .+?\ failed\ with\ .+?}, |
|
1210
|
|
|
|
|
|
|
q{mprotect\ for\ \%p\ .+?\ failed\ with\ .+?}, |
|
1211
|
|
|
|
|
|
|
q{msg.+?\ not\ implemented}, |
|
1212
|
|
|
|
|
|
|
q{nested\ \*\?\+\ in\ regexp}, |
|
1213
|
|
|
|
|
|
|
q{next\:\:method\/next\:\:can\/maybe\:\:next\:\:method\ cannot\ find\ enclosing\ method}, |
|
1214
|
|
|
|
|
|
|
q{no\ UTC\ offset\ information\;\ assuming\ local\ time\ is\ UTC}, |
|
1215
|
|
|
|
|
|
|
q{oops\:\ oopsAV}, |
|
1216
|
|
|
|
|
|
|
q{oops\:\ oopsHV}, |
|
1217
|
|
|
|
|
|
|
q{overload\ arg\ \'.+?\'\ is\ invalid}, |
|
1218
|
|
|
|
|
|
|
q{pack\/unpack\ repeat\ count\ overflow}, |
|
1219
|
|
|
|
|
|
|
q{page\ overflow}, |
|
1220
|
|
|
|
|
|
|
q{panic\:\ .+?}, |
|
1221
|
|
|
|
|
|
|
q{panic\:\ Devel\:\:DProf\ inconsistent\ subroutine\ return}, |
|
1222
|
|
|
|
|
|
|
q{panic\:\ INTERPCASEMOD}, |
|
1223
|
|
|
|
|
|
|
q{panic\:\ INTERPCASEMOD\,\ .+?}, |
|
1224
|
|
|
|
|
|
|
q{panic\:\ INTERPCONCAT}, |
|
1225
|
|
|
|
|
|
|
q{panic\:\ INTERPCONCAT\,\ .+?}, |
|
1226
|
|
|
|
|
|
|
q{panic\:\ Sequence\ \(\?\{\.\.\.\}\)\:\ no\ code\ block\ found}, |
|
1227
|
|
|
|
|
|
|
q{panic\:\ Sequence\ \(\?\{\.\.\.\}\)\:\ no\ code\ block\ found\ in\ regex\ m\/.+?\/}, |
|
1228
|
|
|
|
|
|
|
q{panic\:\ array\ extend}, |
|
1229
|
|
|
|
|
|
|
q{panic\:\ attempt\ to\ call\ .+?\ in\ .+?}, |
|
1230
|
|
|
|
|
|
|
q{panic\:\ child\ pseudo\-process\ was\ never\ scheduled}, |
|
1231
|
|
|
|
|
|
|
q{panic\:\ ck_grep}, |
|
1232
|
|
|
|
|
|
|
q{panic\:\ ck_grep\,\ type\=.+?}, |
|
1233
|
|
|
|
|
|
|
q{panic\:\ ck_split}, |
|
1234
|
|
|
|
|
|
|
q{panic\:\ ck_split\,\ type\=.+?}, |
|
1235
|
|
|
|
|
|
|
q{panic\:\ corrupt\ saved\ stack\ index}, |
|
1236
|
|
|
|
|
|
|
q{panic\:\ corrupt\ saved\ stack\ index\ \%ld}, |
|
1237
|
|
|
|
|
|
|
q{panic\:\ del_backref}, |
|
1238
|
|
|
|
|
|
|
q{panic\:\ die\ .+?}, |
|
1239
|
|
|
|
|
|
|
q{panic\:\ do_match}, |
|
1240
|
|
|
|
|
|
|
q{panic\:\ do_split}, |
|
1241
|
|
|
|
|
|
|
q{panic\:\ do_subst}, |
|
1242
|
|
|
|
|
|
|
q{panic\:\ do_trans}, |
|
1243
|
|
|
|
|
|
|
q{panic\:\ do_trans_.+?}, |
|
1244
|
|
|
|
|
|
|
q{panic\:\ fold_constants\ JMPENV_PUSH\ returned\ .+?}, |
|
1245
|
|
|
|
|
|
|
q{panic\:\ frexp}, |
|
1246
|
|
|
|
|
|
|
q{panic\:\ goto}, |
|
1247
|
|
|
|
|
|
|
q{panic\:\ goto\,\ type\=.+?\,\ ix\=\%ld}, |
|
1248
|
|
|
|
|
|
|
q{panic\:\ gp_free\ failed\ to\ free\ glob\ pointer}, |
|
1249
|
|
|
|
|
|
|
q{panic\:\ hfreeentries\ failed\ to\ free\ hash}, |
|
1250
|
|
|
|
|
|
|
q{panic\:\ kid\ popen\ errno\ read}, |
|
1251
|
|
|
|
|
|
|
q{panic\:\ last}, |
|
1252
|
|
|
|
|
|
|
q{panic\:\ last\,\ type\=.+?}, |
|
1253
|
|
|
|
|
|
|
q{panic\:\ leave_scope\ clearsv}, |
|
1254
|
|
|
|
|
|
|
q{panic\:\ leave_scope\ inconsistency}, |
|
1255
|
|
|
|
|
|
|
q{panic\:\ leave_scope\ inconsistency\ .+?}, |
|
1256
|
|
|
|
|
|
|
q{panic\:\ list\ extend}, |
|
1257
|
|
|
|
|
|
|
q{panic\:\ magic_killbackrefs}, |
|
1258
|
|
|
|
|
|
|
q{panic\:\ malloc}, |
|
1259
|
|
|
|
|
|
|
q{panic\:\ malloc\,\ .+?}, |
|
1260
|
|
|
|
|
|
|
q{panic\:\ mapstart}, |
|
1261
|
|
|
|
|
|
|
q{panic\:\ memory\ wrap}, |
|
1262
|
|
|
|
|
|
|
q{panic\:\ null\ array}, |
|
1263
|
|
|
|
|
|
|
q{panic\:\ pad_alloc}, |
|
1264
|
|
|
|
|
|
|
q{panic\:\ pad_alloc\,\ \%p\!\=\%p}, |
|
1265
|
|
|
|
|
|
|
q{panic\:\ pad_free\ curpad}, |
|
1266
|
|
|
|
|
|
|
q{panic\:\ pad_free\ curpad\,\ \%p\!\=\%p}, |
|
1267
|
|
|
|
|
|
|
q{panic\:\ pad_free\ po}, |
|
1268
|
|
|
|
|
|
|
q{panic\:\ pad_reset\ curpad}, |
|
1269
|
|
|
|
|
|
|
q{panic\:\ pad_reset\ curpad\,\ \%p\!\=\%p}, |
|
1270
|
|
|
|
|
|
|
q{panic\:\ pad_sv\ po}, |
|
1271
|
|
|
|
|
|
|
q{panic\:\ pad_swipe\ curpad}, |
|
1272
|
|
|
|
|
|
|
q{panic\:\ pad_swipe\ curpad\,\ \%p\!\=\%p}, |
|
1273
|
|
|
|
|
|
|
q{panic\:\ pad_swipe\ po}, |
|
1274
|
|
|
|
|
|
|
q{panic\:\ pp_iter}, |
|
1275
|
|
|
|
|
|
|
q{panic\:\ pp_iter\,\ type\=.+?}, |
|
1276
|
|
|
|
|
|
|
q{panic\:\ pp_match}, |
|
1277
|
|
|
|
|
|
|
q{panic\:\ pp_match.+?}, |
|
1278
|
|
|
|
|
|
|
q{panic\:\ pp_split}, |
|
1279
|
|
|
|
|
|
|
q{panic\:\ pp_split\,\ pm\=\%p\,\ s\=\%p}, |
|
1280
|
|
|
|
|
|
|
q{panic\:\ realloc}, |
|
1281
|
|
|
|
|
|
|
q{panic\:\ realloc\,\ .+?}, |
|
1282
|
|
|
|
|
|
|
q{panic\:\ reference\ miscount\ on\ nsv\ in\ sv_replace\(\)\ \(.+?\ \!\=\ 1\)}, |
|
1283
|
|
|
|
|
|
|
q{panic\:\ restartop}, |
|
1284
|
|
|
|
|
|
|
q{panic\:\ restartop\ in\ .+?}, |
|
1285
|
|
|
|
|
|
|
q{panic\:\ return}, |
|
1286
|
|
|
|
|
|
|
q{panic\:\ return\,\ type\=.+?}, |
|
1287
|
|
|
|
|
|
|
q{panic\:\ scan_num}, |
|
1288
|
|
|
|
|
|
|
q{panic\:\ scan_num\,\ .+?}, |
|
1289
|
|
|
|
|
|
|
q{panic\:\ string\ extend}, |
|
1290
|
|
|
|
|
|
|
q{panic\:\ strxfrm\(\)\ gets\ absurd\ \-\ a\ \=\>\ .+?\,\ ab\ \=\>\ .+?}, |
|
1291
|
|
|
|
|
|
|
q{panic\:\ sv_chop\ .+?}, |
|
1292
|
|
|
|
|
|
|
q{panic\:\ sv_insert}, |
|
1293
|
|
|
|
|
|
|
q{panic\:\ sv_insert\,\ midend\=\%p\,\ bigend\=\%p}, |
|
1294
|
|
|
|
|
|
|
q{panic\:\ top_env}, |
|
1295
|
|
|
|
|
|
|
q{panic\:\ unimplemented\ op\ .+?\ \(\#.+?\)\ called}, |
|
1296
|
|
|
|
|
|
|
q{panic\:\ utf16_to_utf8\:\ odd\ bytelen}, |
|
1297
|
|
|
|
|
|
|
q{panic\:\ utf16_to_utf8_reversed\:\ odd\ bytelen}, |
|
1298
|
|
|
|
|
|
|
q{panic\:\ yylex}, |
|
1299
|
|
|
|
|
|
|
q{panic\:\ yylex\,\ .+?}, |
|
1300
|
|
|
|
|
|
|
q{perl\:\ warning\:\ Non\ hex\ character\ in\ \'\$ENV\{PERL_HASH_SEED\}\'\,\ seed\ only\ partially\ set}, |
|
1301
|
|
|
|
|
|
|
q{perl\:\ warning\:\ Setting\ locale\ failed\.}, |
|
1302
|
|
|
|
|
|
|
q{perl\:\ warning\:\ strange\ setting\ in\ \'\$ENV\{PERL_PERTURB_KEYS\}\'\:\ \'.+?\'}, |
|
1303
|
|
|
|
|
|
|
q{perlio\:\ argument\ list\ not\ closed\ for\ layer\ \".+?\"}, |
|
1304
|
|
|
|
|
|
|
q{perlio\:\ invalid\ separator\ character\ .+?\ in\ layer\ specification\ list\ .+?}, |
|
1305
|
|
|
|
|
|
|
q{perlio\:\ unknown\ layer\ \".+?\"}, |
|
1306
|
|
|
|
|
|
|
q{pid\ .+?\ not\ a\ child}, |
|
1307
|
|
|
|
|
|
|
q{pop\ on\ reference\ is\ experimental}, |
|
1308
|
|
|
|
|
|
|
q{pragma\ \"attrs\"\ is\ deprecated\,\ use\ \"sub\ NAME\ \:\ ATTRS\"\ instead}, |
|
1309
|
|
|
|
|
|
|
q{print\(\)\ on\ closed\ filehandle\ .+?}, |
|
1310
|
|
|
|
|
|
|
q{printf\(\)\ on\ closed\ filehandle\ .+?}, |
|
1311
|
|
|
|
|
|
|
q{push\ on\ reference\ is\ experimental}, |
|
1312
|
|
|
|
|
|
|
q{read\(\)\ on\ closed\ filehandle\ .+?}, |
|
1313
|
|
|
|
|
|
|
q{read\(\)\ on\ unopened\ filehandle\ .+?}, |
|
1314
|
|
|
|
|
|
|
q{readdir\(\)\ attempted\ on\ invalid\ dirhandle\ .+?}, |
|
1315
|
|
|
|
|
|
|
q{readline\(\)\ on\ closed\ filehandle\ .+?}, |
|
1316
|
|
|
|
|
|
|
q{realloc\(\)\ of\ freed\ memory\ ignored}, |
|
1317
|
|
|
|
|
|
|
q{refcnt\:\ fd\ .+?.+?}, |
|
1318
|
|
|
|
|
|
|
q{refcnt_dec\:\ fd\ .+?.+?}, |
|
1319
|
|
|
|
|
|
|
q{refcnt_inc\:\ fd\ .+?.+?}, |
|
1320
|
|
|
|
|
|
|
q{regexp\ \*\+\ operand\ could\ be\ empty}, |
|
1321
|
|
|
|
|
|
|
q{regexp\ memory\ corruption}, |
|
1322
|
|
|
|
|
|
|
q{regexp\ out\ of\ space}, |
|
1323
|
|
|
|
|
|
|
q{rewinddir\(\)\ attempted\ on\ invalid\ dirhandle\ .+?}, |
|
1324
|
|
|
|
|
|
|
q{seekdir\(\)\ attempted\ on\ invalid\ dirhandle\ .+?}, |
|
1325
|
|
|
|
|
|
|
q{select\ not\ implemented}, |
|
1326
|
|
|
|
|
|
|
q{sem.+?\ not\ implemented}, |
|
1327
|
|
|
|
|
|
|
q{semi\-panic\:\ attempt\ to\ dup\ freed\ string}, |
|
1328
|
|
|
|
|
|
|
q{send\(\)\ on\ closed\ socket\ .+?}, |
|
1329
|
|
|
|
|
|
|
q{setegid\(\)\ not\ implemented}, |
|
1330
|
|
|
|
|
|
|
q{seteuid\(\)\ not\ implemented}, |
|
1331
|
|
|
|
|
|
|
q{setpgrp\ can\'t\ take\ arguments}, |
|
1332
|
|
|
|
|
|
|
q{setrgid\(\)\ not\ implemented}, |
|
1333
|
|
|
|
|
|
|
q{setruid\(\)\ not\ implemented}, |
|
1334
|
|
|
|
|
|
|
q{setsockopt\(\)\ on\ closed\ socket\ .+?}, |
|
1335
|
|
|
|
|
|
|
q{shift\ on\ reference\ is\ experimental}, |
|
1336
|
|
|
|
|
|
|
q{shm.+?\ not\ implemented}, |
|
1337
|
|
|
|
|
|
|
q{shutdown\(\)\ on\ closed\ socket\ .+?}, |
|
1338
|
|
|
|
|
|
|
q{sleep\(.+?\)\ too\ large}, |
|
1339
|
|
|
|
|
|
|
q{sort\ is\ now\ a\ reserved\ word}, |
|
1340
|
|
|
|
|
|
|
q{splice\ on\ reference\ is\ experimental}, |
|
1341
|
|
|
|
|
|
|
q{splice\(\)\ offset\ past\ end\ of\ array}, |
|
1342
|
|
|
|
|
|
|
q{stat\(\)\ on\ unopened\ filehandle\ .+?}, |
|
1343
|
|
|
|
|
|
|
q{substr\ outside\ of\ string}, |
|
1344
|
|
|
|
|
|
|
q{suidperl\ is\ no\ longer\ needed\ since\ .+?}, |
|
1345
|
|
|
|
|
|
|
q{sv_upgrade\ from\ type\ .+?\ down\ to\ type\ .+?}, |
|
1346
|
|
|
|
|
|
|
q{switching\ effective\ .+?\ is\ not\ implemented}, |
|
1347
|
|
|
|
|
|
|
q{syntax\ error}, |
|
1348
|
|
|
|
|
|
|
q{syntax\ error\ at\ line\ .+?\:\ \'.+?\'\ unexpected}, |
|
1349
|
|
|
|
|
|
|
q{syntax\ error\ at\ line\ .+?\:\ \`.+?\'\ unexpected}, |
|
1350
|
|
|
|
|
|
|
q{syntax\ error\ in\ file\ .+?\ at\ line\ .+?\,\ next\ 2\ tokens\ \".+?\"}, |
|
1351
|
|
|
|
|
|
|
q{sysread\(\)\ on\ closed\ filehandle\ .+?}, |
|
1352
|
|
|
|
|
|
|
q{sysread\(\)\ on\ unopened\ filehandle\ .+?}, |
|
1353
|
|
|
|
|
|
|
q{syswrite\(\)\ on\ closed\ filehandle\ .+?}, |
|
1354
|
|
|
|
|
|
|
q{tell\(\)\ on\ unopened\ file}, |
|
1355
|
|
|
|
|
|
|
q{tell\(\)\ on\ unopened\ filehandle}, |
|
1356
|
|
|
|
|
|
|
q{telldir\(\)\ attempted\ on\ invalid\ dirhandle\ .+?}, |
|
1357
|
|
|
|
|
|
|
q{thread\ failed\ to\ start\:\ .+?}, |
|
1358
|
|
|
|
|
|
|
q{times\ not\ implemented}, |
|
1359
|
|
|
|
|
|
|
q{trailing\ \\\ in\ regexp}, |
|
1360
|
|
|
|
|
|
|
q{truncate\ not\ implemented}, |
|
1361
|
|
|
|
|
|
|
q{umask\ not\ implemented}, |
|
1362
|
|
|
|
|
|
|
q{umask\:\ argument\ is\ missing\ initial\ 0}, |
|
1363
|
|
|
|
|
|
|
q{unexec\ of\ .+?\ into\ .+?\ failed\!}, |
|
1364
|
|
|
|
|
|
|
q{unmatched\ \(\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
1365
|
|
|
|
|
|
|
q{unmatched\ \(\ in\ regexp\ before\ \<\<\ HERE\ mark\ in\ regex\ m\/.+?\/}, |
|
1366
|
|
|
|
|
|
|
q{unmatched\ \(\)\ in\ regexp}, |
|
1367
|
|
|
|
|
|
|
q{unmatched\ \[\ before\ \<\<\ HERE\ mark\ in\ regex\ m\/.+?\/}, |
|
1368
|
|
|
|
|
|
|
q{unmatched\ \[\ in\ regex\;\ marked\ by\ \<\-\-\ HERE\ in\ m\/.+?\/}, |
|
1369
|
|
|
|
|
|
|
q{unmatched\ \[\]\ in\ regexp}, |
|
1370
|
|
|
|
|
|
|
q{unshift\ on\ reference\ is\ experimental}, |
|
1371
|
|
|
|
|
|
|
q{untie\ attempted\ while\ .+?\ inner\ references\ still\ exist}, |
|
1372
|
|
|
|
|
|
|
q{v\-string\ in\ use\/require\ is\ non\-portable}, |
|
1373
|
|
|
|
|
|
|
q{values\ on\ reference\ is\ experimental}, |
|
1374
|
|
|
|
|
|
|
q{vector\ argument\ not\ supported\ with\ alpha\ versions}, |
|
1375
|
|
|
|
|
|
|
q{when\ is\ experimental}, |
|
1376
|
|
|
|
|
|
|
q{write\(\)\ on\ closed\ filehandle\ .+?}, |
|
1377
|
|
|
|
|
|
|
q{x\ outside\ of\ string}, |
|
1378
|
|
|
|
|
|
|
]; |
|
1379
|
|
|
|
|
|
|
|
|
1380
|
|
|
|
|
|
|
my $ra = Regexp::Assemble->new; |
|
1381
|
|
|
|
|
|
|
$ra->add($_) for @$lines; |
|
1382
|
|
|
|
|
|
|
|
|
1383
|
|
|
|
|
|
|
$re = $ra->re; |
|
1384
|
|
|
|
|
|
|
|
|
1385
|
|
|
|
|
|
|
} |
|
1386
|
|
|
|
|
|
|
|
|
1387
|
|
|
|
|
|
|
sub is_warning { |
|
1388
|
2277
|
|
50
|
2277
|
1
|
791712
|
my $string = shift || return; |
|
1389
|
2277
|
|
|
|
|
37307
|
return $string =~ $re; |
|
1390
|
|
|
|
|
|
|
} |
|
1391
|
|
|
|
|
|
|
|
|
1392
|
|
|
|
|
|
|
sub not_warning { |
|
1393
|
626
|
|
100
|
626
|
1
|
253695
|
my $string = shift || return 1; |
|
1394
|
612
|
|
|
|
|
134362
|
return $string !~ $re; |
|
1395
|
|
|
|
|
|
|
} |
|
1396
|
|
|
|
|
|
|
|
|
1397
|
|
|
|
|
|
|
'Danger! Danger! High Voltage!'; |
|
1398
|
|
|
|
|
|
|
|
|
1399
|
|
|
|
|
|
|
__END__ |