summaryrefslogtreecommitdiff
path: root/utf8.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2019-11-24 12:11:09 -0700
committerKarl Williamson <khw@cpan.org>2019-11-24 12:18:37 -0700
commit4c1d9526da221c268d1fbbdcdbf89a424894c74c (patch)
tree0805f054e467d3f7b2cdd1dd613c31ea6213a5ba /utf8.h
parent0fad139da3fbd09cce6189386a67e9898cd74902 (diff)
downloadperl-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.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/utf8.h b/utf8.h
index e449d72f64..f60202b660 100644
--- a/utf8.h
+++ b/utf8.h
@@ -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", \