summaryrefslogtreecommitdiff
path: root/handy.h
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2013-01-14 12:12:50 -0700
committerKarl Williamson <public@khwilliamson.com>2013-01-14 12:29:15 -0700
commit2f4622f094c723833b1697727ee432fa8629d5e6 (patch)
tree5472b991d2aa166a857f2d44e0f9bb9d508ff107 /handy.h
parent8f939fab8ea456dff01a2f5c368b664623f9293b (diff)
downloadperl-2f4622f094c723833b1697727ee432fa8629d5e6.tar.gz
handy.h: Fix isIDCONT_utf8()
It was handling above-Latin1 code points as IDstarts instead of continues.
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 1beca9b71c..298383e25b 100644
--- a/handy.h
+++ b/handy.h
@@ -1268,7 +1268,7 @@ EXTCONST U32 PL_charclass[];
_is_utf8_FOO(_CC_DIGIT, p))
#define isGRAPH_utf8(p) _generic_swash_utf8(_CC_GRAPH, p)
#define isIDCONT_utf8(p) _generic_func_utf8(_CC_WORDCHAR, \
- _is_utf8_perl_idstart, p)
+ _is_utf8_perl_idcont, p)
/* To prevent S_scan_word in toke.c from hanging, we have to make sure that
* IDFIRST is an alnum. See