From: Nicholas Clark Date: Sat, 6 Oct 2007 22:22:20 +0000 (+0000) Subject: "A" should no longer be in the list of options acceptable to PERL5OPT, X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f0d36289ce76f882218c0a53cd52f716a167e5bb;p=p5sagit%2Fp5-mst-13.2.git "A" should no longer be in the list of options acceptable to PERL5OPT, now that assertions have been removed. p4raw-id: //depot/perl@32056 --- diff --git a/perl.c b/perl.c index f48b1e4..158526a 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)) {