@@ -609,7 +609,7 @@ S_isFOO_utf8_lc(pTHX_ const U8 classnum, const U8* character, const U8* e)
609
609
EIGHT_BIT_UTF8_TO_NATIVE (* character , * (character + 1 )));
610
610
}
611
611
612
- _CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG (character , e );
612
+ CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG_ (character , e );
613
613
614
614
switch ((char_class_number_ ) classnum ) {
615
615
case CC_ENUM_SPACE_ : return is_XPERLSPACE_high (character );
@@ -1812,7 +1812,7 @@ STMT_START { \
1812
1812
case trie_flu8: \
1813
1813
CHECK_AND_WARN_PROBLEMATIC_LOCALE_; \
1814
1814
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); \
1816
1816
} \
1817
1817
goto do_trie_utf8_fold; \
1818
1818
case trie_utf8_exactfa_fold: \
@@ -1862,7 +1862,7 @@ STMT_START { \
1862
1862
case trie_utf8l : \
1863
1863
CHECK_AND_WARN_PROBLEMATIC_LOCALE_ ; \
1864
1864
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 ); \
1866
1866
} \
1867
1867
/* FALLTHROUGH */ \
1868
1868
case trie_utf8 : \
@@ -6764,7 +6764,7 @@ S_regmatch(pTHX_ regmatch_info *reginfo, char *startpos, regnode *prog)
6764
6764
/* We only output for EXACTL, as we let the folder
6765
6765
* output this message for EXACTFLU8 to avoid
6766
6766
* duplication */
6767
- _CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG (locinput ,
6767
+ CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG_ (locinput ,
6768
6768
reginfo -> strend );
6769
6769
}
6770
6770
}
@@ -7091,7 +7091,7 @@ S_regmatch(pTHX_ regmatch_info *reginfo, char *startpos, regnode *prog)
7091
7091
* just to check for this warning is worth it. So this just checks
7092
7092
* the first character */
7093
7093
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 );
7095
7095
}
7096
7096
goto do_exact ;
7097
7097
case EXACT_REQ8 :
@@ -7777,7 +7777,7 @@ S_regmatch(pTHX_ regmatch_info *reginfo, char *startpos, regnode *prog)
7777
7777
7778
7778
if (! UTF8_IS_NEXT_CHAR_DOWNGRADEABLE (locinput , reginfo -> strend )) {
7779
7779
/* 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 ,
7781
7781
reginfo -> strend );
7782
7782
goto utf8_posix_above_latin1 ;
7783
7783
}
@@ -10343,7 +10343,7 @@ S_regrepeat(pTHX_ regexp *prog, char **startposp, const regnode *p,
10343
10343
10344
10344
case EXACTL_t8 :
10345
10345
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 );
10347
10347
}
10348
10348
/* FALLTHROUGH */
10349
10349
@@ -10957,7 +10957,7 @@ S_reginclass(pTHX_ regexp * const prog, const regnode * const n, const U8* const
10957
10957
&& (OP (n ) == ANYOFL || OP (n ) == ANYOFPOSIXL )
10958
10958
&& ! (flags & ANYOFL_UTF8_LOCALE_REQD ))
10959
10959
{
10960
- _CHECK_AND_OUTPUT_WIDE_LOCALE_CP_MSG (c );
10960
+ CHECK_AND_OUTPUT_WIDE_LOCALE_CP_MSG_ (c );
10961
10961
}
10962
10962
}
10963
10963
0 commit comments