Skip to content

Commit a9ec200

Browse files
committed
Convert _toTITLE_utf8_flags to legal name
1 parent a61f650 commit a9ec200

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

handy.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2373,12 +2373,12 @@ END_EXTERN_C
23732373
/* For internal core use only, subject to change */
23742374
#define toFOLD_utf8_flags_(p,e,s,l,f) to_utf8_fold_flags_(p,e,s,l,f)
23752375
#define toLOWER_utf8_flags_(p,e,s,l,f) to_utf8_lower_flags_(p,e,s,l,f)
2376-
#define _toTITLE_utf8_flags(p,e,s,l,f) to_utf8_title_flags_(p,e,s,l,f)
2376+
#define toTITLE_utf8_flags_(p,e,s,l,f) to_utf8_title_flags_(p,e,s,l,f)
23772377
#define _toUPPER_utf8_flags(p,e,s,l,f) to_utf8_upper_flags_(p,e,s,l,f)
23782378

23792379
#define toFOLD_utf8_safe(p,e,s,l) toFOLD_utf8_flags_(p,e,s,l, FOLD_FLAGS_FULL)
23802380
#define toLOWER_utf8_safe(p,e,s,l) toLOWER_utf8_flags_(p,e,s,l, 0)
2381-
#define toTITLE_utf8_safe(p,e,s,l) _toTITLE_utf8_flags(p,e,s,l, 0)
2381+
#define toTITLE_utf8_safe(p,e,s,l) toTITLE_utf8_flags_(p,e,s,l, 0)
23822382
#define toUPPER_utf8_safe(p,e,s,l) _toUPPER_utf8_flags(p,e,s,l, 0)
23832383

23842384
#define isALPHA_LC_utf8(p, e) isALPHA_LC_utf8_safe(p, e)

pp.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4151,9 +4151,9 @@ PP_wrapped(pp_ucfirst, 1, 0)
41514151

41524152
if (op_type == OP_UCFIRST) {
41534153
#ifdef USE_LOCALE_CTYPE
4154-
_toTITLE_utf8_flags(s, s +slen, tmpbuf, &tculen, IN_LC_RUNTIME(LC_CTYPE));
4154+
toTITLE_utf8_flags_(s, s +slen, tmpbuf, &tculen, IN_LC_RUNTIME(LC_CTYPE));
41554155
#else
4156-
_toTITLE_utf8_flags(s, s +slen, tmpbuf, &tculen, 0);
4156+
toTITLE_utf8_flags_(s, s +slen, tmpbuf, &tculen, 0);
41574157
#endif
41584158
}
41594159
else {

0 commit comments

Comments
 (0)