Commit b72af52b9c6f2710e6338cad793ee9bb1c316ed3

Werner Lemberg 2009-05-19T07:33:15

Fix Savannah bug #26600. * src/type42/t42parse.c (t42_load_keyword): Handle T1_FIELD_LOCATION_FONT_EXTRA.

diff --git a/ChangeLog b/ChangeLog
index 91cc068..5ef3e6f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2009-05-19  Werner Lemberg  <wl@gnu.org>
+
+	Fix Savannah bug #26600.
+
+	* src/type42/t42parse.c (t42_load_keyword): Handle
+	T1_FIELD_LOCATION_FONT_EXTRA.
+
 2009-04-30  Werner Lemberg  <wl@gnu.org>
 
 	Document recent changes to ftview.
@@ -820,7 +827,7 @@
 	Remove ABI-breaking field in public PS_InfoFontRec definition.
 
 	Instead, we define a new internal PS_FontExtraRec structure to
-	hold the additionnal field, then place it in various internal
+	hold the additional field, then place it in various internal
 	positions of the corresponding FT_Face derived objects.
 
 	* include/freetype/t1tables.h (PS_FontInfoRec): Remove the
diff --git a/src/type42/t42parse.c b/src/type42/t42parse.c
index 295bd14..fb0e898 100644
--- a/src/type42/t42parse.c
+++ b/src/type42/t42parse.c
@@ -983,6 +983,10 @@
       dummy_object = &face->type1.font_info;
       break;
 
+    case T1_FIELD_LOCATION_FONT_EXTRA:
+      dummy_object = &face->type1.font_extra;
+      break;
+
     case T1_FIELD_LOCATION_BBOX:
       dummy_object = &face->type1.font_bbox;
       break;