summaryrefslogtreecommitdiff
path: root/perl.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2007-10-06 22:22:20 +0000
committerNicholas Clark <nick@ccl4.org>2007-10-06 22:22:20 +0000
commitf0d36289ce76f882218c0a53cd52f716a167e5bb (patch)
tree754c3312901611307c297c68cccfe7c23ecce310 /perl.c
parentc41f7ed2fea446da54380eaaa979695a710fbcb8 (diff)
downloadperl-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl.c b/perl.c
index f48b1e453d..158526ab29 100644
--- a/perl.c
+++ b/perl.c
@@ -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)) {