This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
handy.h: Use some common macros for ASCII/EBCDIC
[perl5.git] / utf8.h
diff --git a/utf8.h b/utf8.h
index 09e4f7c..f0e9d56 100644 (file)
--- a/utf8.h
+++ b/utf8.h
@@ -57,8 +57,8 @@
 
 #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_UTF8_NOMIX_ASCII   (1 << 0)
+#define FOLDEQ_LOCALE             (1 << 1)
 #define FOLDEQ_S1_ALREADY_FOLDED  (1 << 2)
 #define FOLDEQ_S2_ALREADY_FOLDED  (1 << 3)