summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2012-12-29 20:51:00 -0700
committerKarl Williamson <public@khwilliamson.com>2012-12-31 11:11:58 -0700
commit0eb30aebe20a48d634d4e484bc9e6005dffc1420 (patch)
tree589cc8865a3cb7728dc334a20bd41448dd563b88 /op.c
parent8a2bca12c113fc829e4af2bb42350a733a5ed773 (diff)
downloadperl-0eb30aebe20a48d634d4e484bc9e6005dffc1420.tar.gz
Change core calls of isALNUM() to isWORDCHAR()
The latter is more clearly named to indicate it includes the underscore.
Diffstat (limited to 'op.c')
-rw-r--r--op.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/op.c b/op.c
index 60184b67aa..51f40cdf06 100644
--- a/op.c
+++ b/op.c
@@ -3121,10 +3121,10 @@ Perl_localize(pTHX_ OP *o, I32 lex)
while (1) {
if (*s && strchr("@$%*", *s) && *++s
- && (isALNUM(*s) || UTF8_IS_CONTINUED(*s))) {
+ && (isWORDCHAR(*s) || UTF8_IS_CONTINUED(*s))) {
s++;
sigil = TRUE;
- while (*s && (isALNUM(*s) || UTF8_IS_CONTINUED(*s)))
+ while (*s && (isWORDCHAR(*s) || UTF8_IS_CONTINUED(*s)))
s++;
while (*s && (strchr(", \t\n", *s)))
s++;