Skip to content

Commit b28629e

Browse files
committed
Convert _is_utf8_perl_idcont to legal name
1 parent dabe63f commit b28629e

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

embed.fnc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1764,7 +1764,7 @@ ARTdip |bool |is_utf8_invariant_string_loc \
17641764
|NN const U8 * const s \
17651765
|STRLEN len \
17661766
|NULLOK const U8 **ep
1767-
CRp |bool |_is_utf8_perl_idcont \
1767+
CRp |bool |is_utf8_perl_idcont_ \
17681768
|NN const U8 *p \
17691769
|NN const U8 * const e
17701770
CRp |bool |is_utf8_perl_idstart_ \

embed.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,6 @@
118118
# define SvUV_nomg(a) Perl_SvUV_nomg(aTHX_ a)
119119
# define _is_uni_FOO(a,b) Perl__is_uni_FOO(aTHX_ a,b)
120120
# define _is_utf8_FOO(a,b,c) Perl__is_utf8_FOO(aTHX_ a,b,c)
121-
# define _is_utf8_perl_idcont(a,b) Perl__is_utf8_perl_idcont(aTHX_ a,b)
122121
# define amagic_call(a,b,c,d) Perl_amagic_call(aTHX_ a,b,c,d)
123122
# define amagic_deref_call(a,b) Perl_amagic_deref_call(aTHX_ a,b)
124123
# define apply_attrs_string(a,b,c,d) Perl_apply_attrs_string(aTHX_ a,b,c,d)
@@ -330,6 +329,7 @@
330329
# define Perl_is_utf8_fixed_width_buf_loc_flags is_utf8_fixed_width_buf_loc_flags
331330
# define is_utf8_fixed_width_buf_loclen_flags Perl_is_utf8_fixed_width_buf_loclen_flags
332331
# define is_utf8_invariant_string_loc Perl_is_utf8_invariant_string_loc
332+
# define is_utf8_perl_idcont_(a,b) Perl_is_utf8_perl_idcont_(aTHX_ a,b)
333333
# define is_utf8_perl_idstart_(a,b) Perl_is_utf8_perl_idstart_(aTHX_ a,b)
334334
# define Perl_is_utf8_string is_utf8_string
335335
# define is_utf8_string_flags Perl_is_utf8_string_flags

handy.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2335,7 +2335,7 @@ END_EXTERN_C
23352335
_is_utf8_FOO(CC_DIGIT_, p, e))
23362336
#define isGRAPH_utf8_safe(p, e) generic_invlist_utf8_safe_(CC_GRAPH_, p, e)
23372337
#define isIDCONT_utf8_safe(p, e) generic_func_utf8_safe_(CC_WORDCHAR_, \
2338-
_is_utf8_perl_idcont, p, e)
2338+
is_utf8_perl_idcont_, p, e)
23392339

23402340
/* To prevent S_scan_word in toke.c from hanging, we have to make sure that
23412341
* IDFIRST is an alnum. See
@@ -2445,7 +2445,7 @@ END_EXTERN_C
24452445
generic_LC_invlist_utf8_safe_(isGRAPH_LC, CC_GRAPH_, p, e)
24462446
#define isIDCONT_LC_utf8_safe(p, e) \
24472447
generic_LC_func_utf8_safe_(isIDCONT_LC, \
2448-
_is_utf8_perl_idcont, p, e)
2448+
is_utf8_perl_idcont_, p, e)
24492449
#define isIDFIRST_LC_utf8_safe(p, e) \
24502450
generic_LC_func_utf8_safe_(isIDFIRST_LC, \
24512451
is_utf8_perl_idstart_, p, e)

proto.h

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

utf8.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3922,9 +3922,9 @@ Perl_is_utf8_perl_idstart_(pTHX_ const U8 *p, const U8 * const e)
39223922
}
39233923

39243924
bool
3925-
Perl__is_utf8_perl_idcont(pTHX_ const U8 *p, const U8 * const e)
3925+
Perl_is_utf8_perl_idcont_(pTHX_ const U8 *p, const U8 * const e)
39263926
{
3927-
PERL_ARGS_ASSERT__IS_UTF8_PERL_IDCONT;
3927+
PERL_ARGS_ASSERT_IS_UTF8_PERL_IDCONT_;
39283928

39293929
return IS_UTF8_IN_INVLIST(p, e, PL_utf8_perl_idcont);
39303930
}

0 commit comments

Comments
 (0)