summaryrefslogtreecommitdiffstats
path: root/third_party/harfbuzz/contrib/harfbuzz-unicode-tables.c
diff options
context:
space:
mode:
authorbashi@chromium.org <bashi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-09 01:06:56 +0000
committerbashi@chromium.org <bashi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-09 01:06:56 +0000
commitd6b94838c9c7cfe13933e819bebb99b08f13d08b (patch)
tree3331a6d31e40f40db8dcfd66d51e8a38168d1024 /third_party/harfbuzz/contrib/harfbuzz-unicode-tables.c
parente3791ce9ce5f0682b59593839cabd3a56b327249 (diff)
downloadchromium_src-d6b94838c9c7cfe13933e819bebb99b08f13d08b.zip
chromium_src-d6b94838c9c7cfe13933e819bebb99b08f13d08b.tar.gz
chromium_src-d6b94838c9c7cfe13933e819bebb99b08f13d08b.tar.bz2
Update (old) harfbuzz to ToT
This CL is made by: - Got harfbuzz ToT (revision d10a264823e81631336bab37f08a52cc243d3654) - Applied third_party/harfbuzz/chromium.patch to harfbuzz ToT. - Applied the change made by http://codereview.chromium.org/543067/ (chromium.patch doesn't include this change) - Copied revised files to third_party/harfbuzz - Updated README.chromium and chromium.patch BUG=91789 TEST=ran WebKit layout tests. Review URL: http://codereview.chromium.org/7595001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@95926 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/harfbuzz/contrib/harfbuzz-unicode-tables.c')
-rw-r--r--third_party/harfbuzz/contrib/harfbuzz-unicode-tables.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/harfbuzz/contrib/harfbuzz-unicode-tables.c b/third_party/harfbuzz/contrib/harfbuzz-unicode-tables.c
index 3c3fead6..7cf6056 100644
--- a/third_party/harfbuzz/contrib/harfbuzz-unicode-tables.c
+++ b/third_party/harfbuzz/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;
}