as suggested by Merijn (see [perl #34087])
p4raw-id: //depot/perl@24070
=item Too late for "-%s" option
(X) The #! line (or local equivalent) in a Perl script contains the
-B<-M> or B<-m> option. This is an error because B<-M> and B<-m> options
+B<-M>, B<-m> or B<-C> option. This is an error because those options
are not intended for use inside scripts. Use the C<use> pragma instead.
=item Too late to run %s block
if (*d++ == '-') {
bool switches_done = PL_doswitches;
do {
- if (*d == 'M' || *d == 'm') {
+ if (*d == 'M' || *d == 'm' || *d == 'C') {
char *m = d;
while (*d && !isSPACE(*d)) d++;
Perl_croak(aTHX_ "Too late for \"-%.*s\" option",