Skip to content

Commit 59784ff

Browse files
committed
Convert _toUPPER_utf8_flags to legal name
1 parent a9ec200 commit 59784ff

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
@@ -2374,12 +2374,12 @@ END_EXTERN_C
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)
23762376
#define toTITLE_utf8_flags_(p,e,s,l,f) to_utf8_title_flags_(p,e,s,l,f)
2377-
#define _toUPPER_utf8_flags(p,e,s,l,f) to_utf8_upper_flags_(p,e,s,l,f)
2377+
#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)
23812381
#define toTITLE_utf8_safe(p,e,s,l) toTITLE_utf8_flags_(p,e,s,l, 0)
2382-
#define toUPPER_utf8_safe(p,e,s,l) _toUPPER_utf8_flags(p,e,s,l, 0)
2382+
#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)
23852385
#define isALPHANUMERIC_LC_utf8(p, e) isALPHANUMERIC_LC_utf8_safe(p, e)

pp.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4547,9 +4547,9 @@ PP_wrapped(pp_uc, 1, 0)
45474547
* and copy it to the output buffer */
45484548

45494549
#ifdef USE_LOCALE_CTYPE
4550-
uv = _toUPPER_utf8_flags(s, send, tmpbuf, &ulen, IN_LC_RUNTIME(LC_CTYPE));
4550+
uv = toUPPER_utf8_flags_(s, send, tmpbuf, &ulen, IN_LC_RUNTIME(LC_CTYPE));
45514551
#else
4552-
uv = _toUPPER_utf8_flags(s, send, tmpbuf, &ulen, 0);
4552+
uv = toUPPER_utf8_flags_(s, send, tmpbuf, &ulen, 0);
45534553
#endif
45544554
if ( uv == GREEK_CAPITAL_LETTER_IOTA
45554555
&& utf8_to_uv_or_die(s, send, 0) ==

0 commit comments

Comments
 (0)