From 9828bca7f8596f5f8aa25543cb263070e90a84a2 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Sat, 11 Oct 2003 11:54:34 +0000 Subject: [PATCH] Oops, forgot the values. --- charset/unicode.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/charset/unicode.h b/charset/unicode.h index 3246f134..1b8f4b67 100644 --- a/charset/unicode.h +++ b/charset/unicode.h @@ -42,14 +42,14 @@ static inline uns Uunaccent(uns x) extern const word *Uexpand_lig(uns x); enum unicode_char_type { - _U_LETTER, /* Letters */ - _U_UPPER, /* Upper-case letters */ - _U_LOWER, /* Lower-case letters */ - _U_CTRL, /* Control characters */ - _U_DIGIT, /* Digits */ - _U_XDIGIT, /* Hexadecimal digits */ - _U_SPACE, /* White spaces (spaces, tabs, newlines) */ - _U_LIGATURE, /* Compatibility ligature (to be expanded) */ + _U_LETTER = 1, /* Letters */ + _U_UPPER = 2, /* Upper-case letters */ + _U_LOWER = 4, /* Lower-case letters */ + _U_CTRL = 8, /* Control characters */ + _U_DIGIT = 16, /* Digits */ + _U_XDIGIT = 32, /* Hexadecimal digits */ + _U_SPACE = 64, /* White spaces (spaces, tabs, newlines) */ + _U_LIGATURE = 128, /* Compatibility ligature (to be expanded) */ }; #define _U_LUPPER (_U_LETTER | _U_UPPER) -- 2.39.2