Commit fb672897f8116e0691564fa18658aec38e9f7c6b

Werner Lemberg 2016-01-20T21:13:16

[autofix] Complete last autofit commit. Problem reported by Kostya Serebryany <kcc@google.com>. * src/autofit/afshaper.c (af_shaper_get_coverage) [!FT_CONFIG_OPTION_USE_HARFBUZZ]: Update signature.

diff --git a/ChangeLog b/ChangeLog
index d2fc27f..64fc0ce 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,14 @@
 2016-01-20  Werner Lemberg  <wl@gnu.org>
 
+	[autofix] Complete last autofit commit.
+
+	Problem reported by Kostya Serebryany <kcc@google.com>.
+
+	* src/autofit/afshaper.c (af_shaper_get_coverage)
+	[!FT_CONFIG_OPTION_USE_HARFBUZZ]: Update signature.
+
+2016-01-20  Werner Lemberg  <wl@gnu.org>
+
 	Still handle `__FTERRORS_H__'.
 
 	We need this for backwards compatibility.
diff --git a/src/autofit/afshaper.c b/src/autofit/afshaper.c
index 95c5d95..6d13b65 100644
--- a/src/autofit/afshaper.c
+++ b/src/autofit/afshaper.c
@@ -576,11 +576,13 @@
   FT_Error
   af_shaper_get_coverage( AF_FaceGlobals  globals,
                           AF_StyleClass   style_class,
-                          FT_UShort*      gstyles )
+                          FT_UShort*      gstyles,
+                          FT_Bool         default_script )
   {
     FT_UNUSED( globals );
     FT_UNUSED( style_class );
     FT_UNUSED( gstyles );
+    FT_UNUSED( default_script );
 
     return FT_Err_Ok;
   }