In perl.git, the branch blead has been updated <https://perl5.git.perl.org/perl.git/commitdiff/ef80cd9998532b7e2be7823cd9af7ba1198822e5?hp=084ed71b2c938c47d8ff7e92e8cbd84f598779d3>
- Log ----------------------------------------------------------------- commit ef80cd9998532b7e2be7823cd9af7ba1198822e5 Author: Karl Williamson <k...@cpan.org> Date: Mon Feb 5 22:14:48 2018 -0700 locale.c: Use same form of macro name This macro has synonyms; use the one prevailing in the adjacent code, so that future maintainers think there is something strange going on that is needed to investigate, only to find that nothing was going on. ----------------------------------------------------------------------- Summary of changes: locale.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/locale.c b/locale.c index ae14e97ba8..428cd402fe 100644 --- a/locale.c +++ b/locale.c @@ -661,7 +661,7 @@ S_new_ctype(pTHX_ const char *newctype) if ( check_for_problems && (isGRAPH_A(i) || isBLANK_A(i) || i == '\n')) { - if ( cBOOL(isalnum(i)) != cBOOL(isALPHANUMERIC(i)) + if ( cBOOL(isalnum(i)) != cBOOL(isALPHANUMERIC_A(i)) || cBOOL(isalpha(i)) != cBOOL(isALPHA_A(i)) || cBOOL(isdigit(i)) != cBOOL(isDIGIT_A(i)) || cBOOL(isgraph(i)) != cBOOL(isGRAPH_A(i)) -- Perl5 Master Repository