diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-10-06 22:22:20 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-10-06 22:22:20 +0000 |
commit | f0d36289ce76f882218c0a53cd52f716a167e5bb (patch) | |
tree | 754c3312901611307c297c68cccfe7c23ecce310 /perl.c | |
parent | c41f7ed2fea446da54380eaaa979695a710fbcb8 (diff) | |
download | perl-f0d36289ce76f882218c0a53cd52f716a167e5bb.tar.gz |
"A" should no longer be in the list of options acceptable to PERL5OPT,
now that assertions have been removed.
p4raw-id: //depot/perl@32056
Diffstat (limited to 'perl.c')
-rw-r--r-- | perl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1983,7 +1983,7 @@ S_parse_body(pTHX_ char **env, XSINIT_t xsinit) d = s; if (!*s) break; - if (!strchr("CDIMUdmtwA", *s)) + if (!strchr("CDIMUdmtw", *s)) Perl_croak(aTHX_ "Illegal switch in PERL5OPT: -%c", *s); while (++s && *s) { if (isSPACE(*s)) { |