summaryrefslogtreecommitdiff
path: root/handy.h
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2010-09-23 23:24:18 -0700
committerFather Chrysostomos <sprout@cpan.org>2010-09-23 23:24:18 -0700
commitc990774177bcba9a4a8fa785c2d91b1699c6182d (patch)
treed40970ad06b992114bfb6a606fe3d14ff74ddbb4 /handy.h
parent7cba3dc75200c59cf127095043b2d7f73b752b7d (diff)
downloadperl-c990774177bcba9a4a8fa785c2d91b1699c6182d.tar.gz
Rename isALNUM_L1 to isWORDCHAR_L1
Diffstat (limited to 'handy.h')
-rw-r--r--handy.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/handy.h b/handy.h
index 449ec0f8cb..c5c12b74e7 100644
--- a/handy.h
+++ b/handy.h
@@ -524,7 +524,7 @@ patched there. The file as of this writing is cpan/Devel-PPPort/parts/inc/misc
|| NATIVE_TO_UNI((U8) c) == 0xB5 \
|| NATIVE_TO_UNI((U8) c) == 0xBA)))
#define isALNUMU(c) (isDIGIT(c) || isALPHAU(c) || (c) == '_')
-#define isALNUM_L1(c) isALNUMU(c)
+#define isWORDCHAR_L1(c) isALNUMU(c)
/* continuation character for legal NAME in \N{NAME} */
#define isCHARNAME_CONT(c) (isALNUMU(c) || (c) == ' ' || (c) == '-' || (c) == '(' || (c) == ')' || (c) == ':' || NATIVE_TO_UNI((U8) c) == 0xA0)