mirror of https://github.com/freetype/freetype
[autofit] Provide dummy blue zone for pseudo script `none'.
Even if the dummy hinter is used as the handler for `none' (which doesn't use blue zones), it is more consistent than the old value (which was 0), pointing to Arabic... * src/autofit/afblue.dat: Add `AF_BLUE_STRINGSET_NONE'. * src/autofit/afblue.c, src/autofit/afblue.h: Regenerated. * src/autofit/afstyles.h (none_dflt): Use AF_BLUE_STRINGSET_NONE.
This commit is contained in:
parent
fb550bf466
commit
bf8f100d2c
13
ChangeLog
13
ChangeLog
|
@ -1,3 +1,16 @@
|
|||
2016-04-05 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
[autofit] Provide dummy blue zone for pseudo script `none'.
|
||||
|
||||
Even if the dummy hinter is used as the handler for `none' (which
|
||||
doesn't use blue zones), it is more consistent than the old value
|
||||
(which was 0), pointing to Arabic...
|
||||
|
||||
* src/autofit/afblue.dat: Add `AF_BLUE_STRINGSET_NONE'.
|
||||
* src/autofit/afblue.c, src/autofit/afblue.h: Regenerated.
|
||||
|
||||
* src/autofit/afstyles.h (none_dflt): Use AF_BLUE_STRINGSET_NONE.
|
||||
|
||||
2016-03-30 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* src/pfr/pfrload.c (pfr_aux_name_load): Thinko (#47567).
|
||||
|
|
|
@ -310,6 +310,7 @@
|
|||
{ AF_BLUE_STRING_MYANMAR_ASCENDER, AF_BLUE_PROPERTY_LATIN_TOP },
|
||||
{ AF_BLUE_STRING_MYANMAR_DESCENDER, 0 },
|
||||
{ AF_BLUE_STRING_MAX, 0 },
|
||||
{ AF_BLUE_STRING_MAX, 0 },
|
||||
{ AF_BLUE_STRING_SINHALA_TOP, AF_BLUE_PROPERTY_LATIN_TOP },
|
||||
{ AF_BLUE_STRING_SINHALA_BOTTOM, 0 },
|
||||
{ AF_BLUE_STRING_SINHALA_DESCENDER, 0 },
|
||||
|
|
|
@ -534,6 +534,9 @@ AF_BLUE_STRINGSET_ENUM AF_BLUE_STRINGSETS_ARRAY AF_BLUE_STRINGSET_MAX_LEN:
|
|||
{ AF_BLUE_STRING_MYANMAR_DESCENDER, 0 }
|
||||
{ AF_BLUE_STRING_MAX, 0 }
|
||||
|
||||
AF_BLUE_STRINGSET_NONE
|
||||
{ AF_BLUE_STRING_MAX, 0 }
|
||||
|
||||
AF_BLUE_STRINGSET_SINH
|
||||
{ AF_BLUE_STRING_SINHALA_TOP, AF_BLUE_PROPERTY_LATIN_TOP }
|
||||
{ AF_BLUE_STRING_SINHALA_BOTTOM, 0 }
|
||||
|
|
|
@ -222,11 +222,12 @@ FT_BEGIN_HEADER
|
|||
AF_BLUE_STRINGSET_LATP = 64,
|
||||
AF_BLUE_STRINGSET_MLYM = 71,
|
||||
AF_BLUE_STRINGSET_MYMR = 74,
|
||||
AF_BLUE_STRINGSET_SINH = 79,
|
||||
AF_BLUE_STRINGSET_TAML = 83,
|
||||
AF_BLUE_STRINGSET_TELU = 86,
|
||||
AF_BLUE_STRINGSET_THAI = 89,
|
||||
af_blue_2_1 = 97,
|
||||
AF_BLUE_STRINGSET_NONE = 79,
|
||||
AF_BLUE_STRINGSET_SINH = 80,
|
||||
AF_BLUE_STRINGSET_TAML = 84,
|
||||
AF_BLUE_STRINGSET_TELU = 87,
|
||||
AF_BLUE_STRINGSET_THAI = 90,
|
||||
af_blue_2_1 = 98,
|
||||
#ifdef AF_CONFIG_OPTION_CJK
|
||||
AF_BLUE_STRINGSET_HANI = af_blue_2_1 + 0,
|
||||
af_blue_2_1_1 = af_blue_2_1 + 2,
|
||||
|
|
|
@ -186,7 +186,7 @@
|
|||
"no style",
|
||||
AF_WRITING_SYSTEM_DUMMY,
|
||||
AF_SCRIPT_NONE,
|
||||
(AF_Blue_Stringset)0,
|
||||
AF_BLUE_STRINGSET_NONE,
|
||||
AF_COVERAGE_DEFAULT )
|
||||
|
||||
STYLE( sinh_dflt, SINH_DFLT,
|
||||
|
|
Loading…
Reference in New Issue