Skip to content

Commit dabe63f

Browse files
committed
Convert _is_uni_perl_idcont to legal name
1 parent aaafa85 commit dabe63f

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

embed.fnc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1721,7 +1721,7 @@ ATdip |bool |is_strict_utf8_string_loclen \
17211721
|NULLOK STRLEN *el
17221722
CRp |bool |_is_uni_FOO |const U8 classnum \
17231723
|const UV c
1724-
CRp |bool |_is_uni_perl_idcont \
1724+
CRp |bool |is_uni_perl_idcont_ \
17251725
|UV c
17261726
CRp |bool |is_uni_perl_idstart_ \
17271727
|UV c

embed.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,6 @@
117117
# define SvUV(a) Perl_SvUV(aTHX_ a)
118118
# define SvUV_nomg(a) Perl_SvUV_nomg(aTHX_ a)
119119
# define _is_uni_FOO(a,b) Perl__is_uni_FOO(aTHX_ a,b)
120-
# define _is_uni_perl_idcont(a) Perl__is_uni_perl_idcont(aTHX_ a)
121120
# define _is_utf8_FOO(a,b,c) Perl__is_utf8_FOO(aTHX_ a,b,c)
122121
# define _is_utf8_perl_idcont(a,b) Perl__is_utf8_perl_idcont(aTHX_ a,b)
123122
# define amagic_call(a,b,c,d) Perl_amagic_call(aTHX_ a,b,c,d)
@@ -322,6 +321,7 @@
322321
# define Perl_is_strict_utf8_string is_strict_utf8_string
323322
# define Perl_is_strict_utf8_string_loc is_strict_utf8_string_loc
324323
# define is_strict_utf8_string_loclen Perl_is_strict_utf8_string_loclen
324+
# define is_uni_perl_idcont_(a) Perl_is_uni_perl_idcont_(aTHX_ a)
325325
# define is_uni_perl_idstart_(a) Perl_is_uni_perl_idstart_(aTHX_ a)
326326
# define is_utf8_FF_helper_ Perl_is_utf8_FF_helper_
327327
# define Perl_is_utf8_char_buf is_utf8_char_buf

handy.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2147,7 +2147,7 @@ END_EXTERN_C
21472147
#define isDIGIT_uvchr(c) generic_invlist_uvchr_(CC_DIGIT_, c)
21482148
#define isGRAPH_uvchr(c) generic_invlist_uvchr_(CC_GRAPH_, c)
21492149
#define isIDCONT_uvchr(c) \
2150-
generic_uvchr_(CC_WORDCHAR_, _is_uni_perl_idcont, c)
2150+
generic_uvchr_(CC_WORDCHAR_, is_uni_perl_idcont_, c)
21512151
#define isIDFIRST_uvchr(c) \
21522152
generic_uvchr_(CC_IDFIRST_, is_uni_perl_idstart_, c)
21532153
#define isLOWER_uvchr(c) generic_invlist_uvchr_(CC_LOWER_, c)
@@ -2212,7 +2212,7 @@ END_EXTERN_C
22122212
#define isDIGIT_LC_uvchr(c) generic_LC_invlist_uvchr_(isDIGIT_LC, CC_DIGIT_, c)
22132213
#define isGRAPH_LC_uvchr(c) generic_LC_invlist_uvchr_(isGRAPH_LC, CC_GRAPH_, c)
22142214
#define isIDCONT_LC_uvchr(c) generic_LC_uvchr_(isIDCONT_LC, \
2215-
_is_uni_perl_idcont, c)
2215+
is_uni_perl_idcont_, c)
22162216
#define isIDFIRST_LC_uvchr(c) generic_LC_uvchr_(isIDFIRST_LC, \
22172217
is_uni_perl_idstart_, c)
22182218
#define isLOWER_LC_uvchr(c) generic_LC_invlist_uvchr_(isLOWER_LC, CC_LOWER_, c)

proto.h

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

utf8.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3543,7 +3543,7 @@ Perl__is_uni_FOO(pTHX_ const U8 classnum, const UV c)
35433543
}
35443544

35453545
bool
3546-
Perl__is_uni_perl_idcont(pTHX_ UV c)
3546+
Perl_is_uni_perl_idcont_(pTHX_ UV c)
35473547
{
35483548
return _invlist_contains_cp(PL_utf8_perl_idcont, c);
35493549
}

0 commit comments

Comments
 (0)