ref: b38ca3cbebd1da222dec4ebff0560cfe9a6802c9
parent: facb79abdc20572cb727deb42a4d2e70563450de
author: Werner Lemberg <[email protected]>
date: Sun Dec 6 14:48:31 EST 2015
[autofit] Typos. * src/autofit/afshaper.c (af_shaper_buf_create, af_shaper_get_elem) [!FT_CONFIG_OPTION_USE_HARFBUZZ]: Make it compile.
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
2015-12-06 Werner Lemberg <[email protected]>
+ [autofit] Typos.
+
+ * src/autofit/afshaper.c (af_shaper_buf_create, af_shaper_get_elem)
+ [!FT_CONFIG_OPTION_USE_HARFBUZZ]: Make it compile.
+
+2015-12-06 Werner Lemberg <[email protected]>
+
[autofit] Add support for Khmer script.
We split Khmer into two auto-hinter scripts: `Khmer' (`khmr') and
--- a/src/autofit/afshaper.c
+++ b/src/autofit/afshaper.c
@@ -544,11 +544,12 @@
void*
af_shaper_buf_create( FT_Face face )
{
+ FT_Error error;
FT_Memory memory = face->memory;
FT_ULong* buf;
- FT_ALLOC( buf, sizeof ( FT_ULong ) );
+ FT_MEM_ALLOC( buf, sizeof ( FT_ULong ) );
return (void*)buf;
}
@@ -620,7 +621,7 @@
FT_LOAD_NO_SCALE |
FT_LOAD_NO_HINTING |
FT_LOAD_IGNORE_TRANSFORM,
- advance ) )
+ advance );
if ( y_offset )
*y_offset = 0;