summaryrefslogtreecommitdiff
path: root/utf8.h
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2014-01-24 10:56:35 -0700
committerKarl Williamson <public@khwilliamson.com>2014-01-27 23:03:47 -0700
commitcea315b64e0c4b1890867df0c925cafc8823ba38 (patch)
treeefc230e794f4190c2d0340073a877b480860bbf6 /utf8.h
parent1505a47c967e97cd85fc9d764bd8736468ad8a95 (diff)
downloadperl-cea315b64e0c4b1890867df0c925cafc8823ba38.tar.gz
Rename an internal flag
The UTF8 in the name is kind of misleading, and would be more misleading after future commits make UTF8 locales special.
Diffstat (limited to 'utf8.h')
-rw-r--r--utf8.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/utf8.h b/utf8.h
index 09e4f7c5f4..1022bc5a1f 100644
--- a/utf8.h
+++ b/utf8.h
@@ -58,7 +58,7 @@
#define foldEQ_utf8(s1, pe1, l1, u1, s2, pe2, l2, u2) \
foldEQ_utf8_flags(s1, pe1, l1, u1, s2, pe2, l2, u2, 0)
#define FOLDEQ_UTF8_NOMIX_ASCII (1 << 0)
-#define FOLDEQ_UTF8_LOCALE (1 << 1)
+#define FOLDEQ_LOCALE (1 << 1)
#define FOLDEQ_S1_ALREADY_FOLDED (1 << 2)
#define FOLDEQ_S2_ALREADY_FOLDED (1 << 3)