@@ -607,7 +607,7 @@ S_isFOO_utf8_lc(pTHX_ const U8 classnum, const U8* character, const U8* e)
607607 EIGHT_BIT_UTF8_TO_NATIVE (* character , * (character + 1 )));
608608 }
609609
610- _CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG (character , e );
610+ CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG_ (character , e );
611611
612612 switch ((char_class_number_ ) classnum ) {
613613 case CC_ENUM_SPACE_ : return is_XPERLSPACE_high (character );
@@ -1807,7 +1807,7 @@ STMT_START {
18071807 case trie_flu8: \
18081808 CHECK_AND_WARN_PROBLEMATIC_LOCALE_; \
18091809 if (UTF8_IS_ABOVE_LATIN1(*uc)) { \
1810- _CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG (uc, uc_end); \
1810+ CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG_ (uc, uc_end); \
18111811 } \
18121812 goto do_trie_utf8_fold; \
18131813 case trie_utf8_exactfa_fold: \
@@ -1853,7 +1853,7 @@ STMT_START {
18531853 case trie_utf8l : \
18541854 CHECK_AND_WARN_PROBLEMATIC_LOCALE_ ; \
18551855 if (utf8_target && UTF8_IS_ABOVE_LATIN1 (* uc )) { \
1856- _CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG (uc , uc_end ); \
1856+ CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG_ (uc , uc_end ); \
18571857 } \
18581858 /* FALLTHROUGH */ \
18591859 case trie_utf8 : \
@@ -6730,7 +6730,7 @@ S_regmatch(pTHX_ regmatch_info *reginfo, char *startpos, regnode *prog)
67306730 /* We only output for EXACTL, as we let the folder
67316731 * output this message for EXACTFLU8 to avoid
67326732 * duplication */
6733- _CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG (locinput ,
6733+ CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG_ (locinput ,
67346734 reginfo -> strend );
67356735 }
67366736 }
@@ -7054,7 +7054,7 @@ S_regmatch(pTHX_ regmatch_info *reginfo, char *startpos, regnode *prog)
70547054 * just to check for this warning is worth it. So this just checks
70557055 * the first character */
70567056 if (utf8_target && UTF8_IS_ABOVE_LATIN1 (* locinput )) {
7057- _CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG (locinput , reginfo -> strend );
7057+ CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG_ (locinput , reginfo -> strend );
70587058 }
70597059 goto do_exact ;
70607060 case EXACT_REQ8 :
@@ -7740,7 +7740,7 @@ S_regmatch(pTHX_ regmatch_info *reginfo, char *startpos, regnode *prog)
77407740
77417741 if (! UTF8_IS_NEXT_CHAR_DOWNGRADEABLE (locinput , reginfo -> strend )) {
77427742 /* An above Latin-1 code point, or malformed */
7743- _CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG (locinput ,
7743+ CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG_ (locinput ,
77447744 reginfo -> strend );
77457745 goto utf8_posix_above_latin1 ;
77467746 }
@@ -10305,7 +10305,7 @@ S_regrepeat(pTHX_ regexp *prog, char **startposp, const regnode *p,
1030510305
1030610306 case EXACTL_t8 :
1030710307 if (UTF8_IS_ABOVE_LATIN1 (* scan )) {
10308- _CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG (scan , loceol );
10308+ CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG_ (scan , loceol );
1030910309 }
1031010310 /* FALLTHROUGH */
1031110311
@@ -10926,7 +10926,7 @@ S_reginclass(pTHX_ regexp * const prog, const regnode * const n, const U8* const
1092610926 && (OP (n ) == ANYOFL || OP (n ) == ANYOFPOSIXL )
1092710927 && ! (flags & ANYOFL_UTF8_LOCALE_REQD ))
1092810928 {
10929- _CHECK_AND_OUTPUT_WIDE_LOCALE_CP_MSG (c );
10929+ CHECK_AND_OUTPUT_WIDE_LOCALE_CP_MSG_ (c );
1093010930 }
1093110931 }
1093210932
0 commit comments