diff options
author | Karl Williamson <khw@cpan.org> | 2019-11-24 12:11:09 -0700 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2019-11-24 12:18:37 -0700 |
commit | 4c1d9526da221c268d1fbbdcdbf89a424894c74c (patch) | |
tree | 0805f054e467d3f7b2cdd1dd613c31ea6213a5ba /utf8.h | |
parent | 0fad139da3fbd09cce6189386a67e9898cd74902 (diff) | |
download | perl-4c1d9526da221c268d1fbbdcdbf89a424894c74c.tar.gz |
Add missing back compat macros
These are needed only to allow some modules to stay updated with blead.
Diffstat (limited to 'utf8.h')
-rw-r--r-- | utf8.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -703,6 +703,7 @@ with a ptr argument. ((IN_BYTES || !UTF) \ ? isWORDCHAR(*(p)) \ : isWORDCHAR_utf8_safe((U8 *) p, (U8 *) e)) +#define isALNUM_lazy_if_safe(p, e, UTF) isWORDCHAR_lazy_if_safe(p, e, UTF) #define isALNUM_lazy_if(p,UTF) \ _is_utf8_FOO(_CC_IDFIRST, (const U8 *) p, "isALNUM_lazy_if", \ |