ref: b75a8b88177166658353739cedd1e0d3558f85f2
parent: 964317e8db3f123b0ce24b2e31aa00e49840cf5d
author: Werner Lemberg <[email protected]>
date: Wed Sep 25 05:46:36 EDT 2013
* src/autofit/aflatin.c (af_{grek,cyrl}_uniranges): Fix arrays.
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2013-09-25 Werner Lemberg <[email protected]>
+
+ * src/autofit/aflatin.c (af_{grek,cyrl}_uniranges): Fix arrays.
+
2013-09-25 suzuki toshiya <[email protected]>
[bdf, pcf] Refuse non-zero face_index.
--- a/src/autofit/aflatin.c
+++ b/src/autofit/aflatin.c
@@ -2669,6 +2669,7 @@
{
AF_UNIRANGE_REC( 0x0370UL, 0x03FFUL ), /* Greek and Coptic */
AF_UNIRANGE_REC( 0x1F00UL, 0x1FFFUL ), /* Greek Extended */
+ AF_UNIRANGE_REC( 0UL, 0UL )
};
static const AF_Script_UniRangeRec af_cyrl_uniranges[] =
@@ -2677,6 +2678,7 @@
AF_UNIRANGE_REC( 0x0500UL, 0x052FUL ), /* Cyrillic Supplement */
AF_UNIRANGE_REC( 0x2DE0UL, 0x2DFFUL ), /* Cyrillic Extended-A */
AF_UNIRANGE_REC( 0xA640UL, 0xA69FUL ), /* Cyrillic Extended-B */
+ AF_UNIRANGE_REC( 0UL, 0UL )
};
static const AF_Script_UniRangeRec af_hebr_uniranges[] =