File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -6723,7 +6723,7 @@ test_UTF8_IS_REPLACEMENT(char *s, STRLEN len)
6723
6723
bool
6724
6724
test_isQUOTEMETA (UV ord )
6725
6725
CODE :
6726
- RETVAL = _isQUOTEMETA (ord );
6726
+ RETVAL = isQUOTEMETA_ (ord );
6727
6727
OUTPUT :
6728
6728
RETVAL
6729
6729
Original file line number Diff line number Diff line change @@ -1691,7 +1691,7 @@ END_EXTERN_C
1691
1691
( (! cBOOL(FITS_IN_8_BITS(c))) \
1692
1692
|| (PL_charclass[(U8) (c)] & CC_mask_(CC_NONLATIN1_FOLD_)))
1693
1693
1694
- # define _isQUOTEMETA (c ) generic_isCC_(c, CC_QUOTEMETA_)
1694
+ # define isQUOTEMETA_ (c ) generic_isCC_(c, CC_QUOTEMETA_)
1695
1695
1696
1696
/* is c a control character for which we have a mnemonic? */
1697
1697
# if defined(PERL_CORE ) || defined(PERL_EXT )
Original file line number Diff line number Diff line change @@ -5073,7 +5073,7 @@ PP(pp_quotemeta)
5073
5073
bool to_quote = FALSE;
5074
5074
5075
5075
if (UTF8_IS_INVARIANT (* s )) {
5076
- if (_isQUOTEMETA (* s )) {
5076
+ if (isQUOTEMETA_ (* s )) {
5077
5077
to_quote = TRUE;
5078
5078
}
5079
5079
}
@@ -5086,7 +5086,7 @@ PP(pp_quotemeta)
5086
5086
IN_LC_RUNTIME (LC_CTYPE )
5087
5087
||
5088
5088
#endif
5089
- _isQUOTEMETA (EIGHT_BIT_UTF8_TO_NATIVE (* s , * (s + 1 ))))
5089
+ isQUOTEMETA_ (EIGHT_BIT_UTF8_TO_NATIVE (* s , * (s + 1 ))))
5090
5090
{
5091
5091
to_quote = TRUE;
5092
5092
}
@@ -5108,7 +5108,7 @@ PP(pp_quotemeta)
5108
5108
}
5109
5109
else if (IN_UNI_8_BIT ) {
5110
5110
while (len -- ) {
5111
- if (_isQUOTEMETA (* s ))
5111
+ if (isQUOTEMETA_ (* s ))
5112
5112
* d ++ = '\\' ;
5113
5113
* d ++ = * s ++ ;
5114
5114
}
You can’t perform that action at this time.
0 commit comments