diff options
author | H.Merijn Brand <h.m.brand@xs4all.nl> | 2005-10-06 08:42:56 +0000 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2005-10-06 08:42:56 +0000 |
commit | e4af53b035442614d6967aeb0941ba0a0e6238a0 (patch) | |
tree | 0a00b5ba17f6889136e1a447aa2f59785708bd7e /perl.c | |
parent | cddfa05e61469c8fd00b0c2b8f6d6e9eef3d488a (diff) | |
download | perl-e4af53b035442614d6967aeb0941ba0a0e6238a0.tar.gz |
Add -C to allowed $PERL5OPT options
Add -C to the $PERL5OPT documentation (and added the missing -A too)
t/run/runenv.t Could use some more tests about how supported
and unsupported options in $PERL5OPT are handled
p4raw-id: //depot/perl@25703
Diffstat (limited to 'perl.c')
-rw-r--r-- | perl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1934,7 +1934,7 @@ S_parse_body(pTHX_ char **env, XSINIT_t xsinit) d = s; if (!*s) break; - if (!strchr("DIMUdmtwA", *s)) + if (!strchr("CDIMUdmtwA", *s)) Perl_croak(aTHX_ "Illegal switch in PERL5OPT: -%c", *s); while (++s && *s) { if (isSPACE(*s)) { |