@@ -609,7 +609,7 @@ S_isFOO_utf8_lc(pTHX_ const U8 classnum, const U8* character, const U8* e)
609609 EIGHT_BIT_UTF8_TO_NATIVE (* character , * (character + 1 )));
610610 }
611611
612- _CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG (character , e );
612+ CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG_ (character , e );
613613
614614 switch ((char_class_number_ ) classnum ) {
615615 case CC_ENUM_SPACE_ : return is_XPERLSPACE_high (character );
@@ -1812,7 +1812,7 @@ STMT_START { \
18121812 case trie_flu8: \
18131813 CHECK_AND_WARN_PROBLEMATIC_LOCALE_; \
18141814 if (UTF8_IS_ABOVE_LATIN1(*uc)) { \
1815- _CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG (uc, uc_end); \
1815+ CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG_ (uc, uc_end); \
18161816 } \
18171817 goto do_trie_utf8_fold; \
18181818 case trie_utf8_exactfa_fold: \
@@ -1862,7 +1862,7 @@ STMT_START { \
18621862 case trie_utf8l : \
18631863 CHECK_AND_WARN_PROBLEMATIC_LOCALE_ ; \
18641864 if (utf8_target && UTF8_IS_ABOVE_LATIN1 (* uc )) { \
1865- _CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG (uc , uc_end ); \
1865+ CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG_ (uc , uc_end ); \
18661866 } \
18671867 /* FALLTHROUGH */ \
18681868 case trie_utf8 : \
@@ -6764,7 +6764,7 @@ S_regmatch(pTHX_ regmatch_info *reginfo, char *startpos, regnode *prog)
67646764 /* We only output for EXACTL, as we let the folder
67656765 * output this message for EXACTFLU8 to avoid
67666766 * duplication */
6767- _CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG (locinput ,
6767+ CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG_ (locinput ,
67686768 reginfo -> strend );
67696769 }
67706770 }
@@ -7091,7 +7091,7 @@ S_regmatch(pTHX_ regmatch_info *reginfo, char *startpos, regnode *prog)
70917091 * just to check for this warning is worth it. So this just checks
70927092 * the first character */
70937093 if (utf8_target && UTF8_IS_ABOVE_LATIN1 (* locinput )) {
7094- _CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG (locinput , reginfo -> strend );
7094+ CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG_ (locinput , reginfo -> strend );
70957095 }
70967096 goto do_exact ;
70977097 case EXACT_REQ8 :
@@ -7777,7 +7777,7 @@ S_regmatch(pTHX_ regmatch_info *reginfo, char *startpos, regnode *prog)
77777777
77787778 if (! UTF8_IS_NEXT_CHAR_DOWNGRADEABLE (locinput , reginfo -> strend )) {
77797779 /* An above Latin-1 code point, or malformed */
7780- _CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG (locinput ,
7780+ CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG_ (locinput ,
77817781 reginfo -> strend );
77827782 goto utf8_posix_above_latin1 ;
77837783 }
@@ -10343,7 +10343,7 @@ S_regrepeat(pTHX_ regexp *prog, char **startposp, const regnode *p,
1034310343
1034410344 case EXACTL_t8 :
1034510345 if (UTF8_IS_ABOVE_LATIN1 (* scan )) {
10346- _CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG (scan , loceol );
10346+ CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG_ (scan , loceol );
1034710347 }
1034810348 /* FALLTHROUGH */
1034910349
@@ -10957,7 +10957,7 @@ S_reginclass(pTHX_ regexp * const prog, const regnode * const n, const U8* const
1095710957 && (OP (n ) == ANYOFL || OP (n ) == ANYOFPOSIXL )
1095810958 && ! (flags & ANYOFL_UTF8_LOCALE_REQD ))
1095910959 {
10960- _CHECK_AND_OUTPUT_WIDE_LOCALE_CP_MSG (c );
10960+ CHECK_AND_OUTPUT_WIDE_LOCALE_CP_MSG_ (c );
1096110961 }
1096210962 }
1096310963
0 commit comments