From e85ea4f9037a4e5bb28f0ffaa4c34ef35c39f547 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Sun, 2 Dec 2012 21:55:16 -0700 Subject: [PATCH] utf8.c: Change is_uni_idfirst_lc() to use Perl's defn The Perl definition is slightly more restrictive of what Unicode's idfirst is. We should use our definition consistently. --- utf8.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utf8.c b/utf8.c index 11af768..e3eba9c 100644 --- a/utf8.c +++ b/utf8.c @@ -1844,7 +1844,7 @@ Perl_is_uni_alnumc_lc(pTHX_ UV c) bool Perl_is_uni_idfirst_lc(pTHX_ UV c) { - return is_uni_idfirst(c); /* XXX no locale support yet */ + return _is_uni_perl_idstart(c); /* XXX no locale support yet */ } bool -- 2.7.4