shithub: freetype+ttf2subf

Download patch

ref: 156ba42e4d44b0bf5f92d43c0bc9b46f9cc19c93
parent: 7da6bbc34af3d29b9ea50b00738c253ec53174c1
author: Werner Lemberg <[email protected]>
date: Sat Sep 29 06:08:01 EDT 2012

[autofit] Fix thinko.

* src/autofit/aftypes.h (AF_SCRIPT):
s/AF_SCRIPT_NONE/AF_SCRIPT_DUMMY/.  We already use `AF_SCRIPT_NONE'
as a bit mask.

* src/autofit/afdummy.c: Updated.

git/fs: mount .git/fs: mount/attach disallowed
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2012-09-29  Werner Lemberg  <[email protected]>
+
+	[autofit] Fix thinko.
+
+	* src/autofit/aftypes.h (AF_SCRIPT):
+	s/AF_SCRIPT_NONE/AF_SCRIPT_DUMMY/.  We already use `AF_SCRIPT_NONE'
+	as a bit mask.
+
+	* src/autofit/afdummy.c: Updated.
+
 2012-09-18  Werner Lemberg  <[email protected]>
 
 	[autofit] Implement `increase-x-height' property.
--- a/src/autofit/afdummy.c
+++ b/src/autofit/afdummy.c
@@ -44,7 +44,7 @@
 
 
   AF_DEFINE_SCRIPT_CLASS( af_dummy_script_class,
-    AF_SCRIPT_NONE,
+    AF_SCRIPT_DUMMY,
     NULL,
 
     sizeof ( AF_ScriptMetricsRec ),
--- a/src/autofit/aftypes.h
+++ b/src/autofit/aftypes.h
@@ -229,7 +229,7 @@
 
   typedef enum  AF_Script_
   {
-    AF_SCRIPT_NONE  = 0,
+    AF_SCRIPT_DUMMY = 0,
     AF_SCRIPT_LATIN = 1,
     AF_SCRIPT_CJK   = 2,
     AF_SCRIPT_INDIC = 3,