X-Git-Url: https://perl5.git.perl.org/perl5.git/blobdiff_plain/8d3a61d95b6b366467913bac62d4ce8a1a91f5be..7c91f47780c6b4923bae37d60b9019a6a770cdf2:/util.c diff --git a/util.c b/util.c index 40abb48..1f1c6fc 100644 --- a/util.c +++ b/util.c @@ -4324,7 +4324,7 @@ Perl_parse_unicode_opts(pTHX_ char **popt) if (isDIGIT(*p)) { opt = (U32) atoi(p); while (isDIGIT(*p)) p++; - if (*p) + if (*p && *p != '\n' && *p != '\r') Perl_croak(aTHX_ "Unknown Unicode option letter '%c'", *p); } else { @@ -4349,8 +4349,9 @@ Perl_parse_unicode_opts(pTHX_ char **popt) case PERL_UNICODE_ARGV: opt |= PERL_UNICODE_ARGV_FLAG; break; default: - Perl_croak(aTHX_ - "Unknown Unicode option letter '%c'", *p); + if (*p != '\n' && *p != '\r') + Perl_croak(aTHX_ + "Unknown Unicode option letter '%c'", *p); } } }