summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@nokia.com>2011-07-13 13:28:14 +0200
committerLars Knoll <lars.knoll@nokia.com>2011-07-13 13:28:14 +0200
commitd10a264823e81631336bab37f08a52cc243d3654 (patch)
tree77c5da34c5e335bb70b15f716356990499619c62 /contrib
parent213bd693a55c04ef25f5e8de5f6feefa9473a30a (diff)
remove NoCategory from HB_CharCategory
The enum value doesn't make sense, HB_Other_NotAssigned should be used for unassigned characters.
Diffstat (limited to 'contrib')
-rw-r--r--contrib/harfbuzz-unicode-tables.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/harfbuzz-unicode-tables.c b/contrib/harfbuzz-unicode-tables.c
index 3c3fead..7cf6056 100644
--- a/contrib/harfbuzz-unicode-tables.c
+++ b/contrib/harfbuzz-unicode-tables.c
@@ -65,7 +65,7 @@ code_point_to_category(HB_UChar32 cp) {
sizeof(struct category_property),
category_property_cmp);
if (!vprop)
- return HB_NoCategory;
+ return HB_Other_NotAssigned;
return ((const struct category_property *) vprop)->category;
}