In perl.git, the branch blead has been updated <https://perl5.git.perl.org/perl.git/commitdiff/a377c856ab6afcf60515844b8ed6793fe5de6330?hp=efb1f9ac55b355a893961ff973ff73842943bee4>
- Log ----------------------------------------------------------------- commit a377c856ab6afcf60515844b8ed6793fe5de6330 Author: Karl Williamson <[email protected]> Date: Tue Jul 23 10:29:21 2019 -0600 handy.h: Add missing character classification synonym This should complete the set. ----------------------------------------------------------------------- Summary of changes: handy.h | 1 + 1 file changed, 1 insertion(+) diff --git a/handy.h b/handy.h index c4363835b3..24c028a638 100644 --- a/handy.h +++ b/handy.h @@ -2087,6 +2087,7 @@ _generic_utf8_safe(classnum, p, e, _is_utf8_FOO_with_len(classnum, p, e)) #define isOCTAL_L1(c) isOCTAL_A(c) #define isXDIGIT_L1(c) isXDIGIT_A(c) #define isALNUM(c) isWORDCHAR(c) +#define isALNUM_A(c) isALNUM(c) #define isALNUMU(c) isWORDCHAR_L1(c) #define isALNUM_LC(c) isWORDCHAR_LC(c) #define isALNUM_uni(c) isWORDCHAR_uni(c) -- Perl5 Master Repository
