提交 dd2a8d4d 编写于 作者: B Behdad Esfahbod 提交者: Behdad Esfahbod

Don't err on Table_Missing.

2006-03-25  Behdad Esfahbod  <behdad@gnome.org>

        * pango/opentype/ottest.c: Don't err on Table_Missing.
上级 434833b1
......@@ -240,7 +240,7 @@ main (int argc, char **argv)
if ((error = TT_Done_GSUB_Table (gsub)))
croak ("FT_Done_GSUB_Table", error);
}
else
else if (error != FT_Err_Table_Missing)
fprintf (stderr, "TT_Load_GSUB_Table %x\n", error);
if (!(error = TT_Load_GPOS_Table (face, &gpos, NULL)))
......@@ -250,7 +250,7 @@ main (int argc, char **argv)
if ((error = TT_Done_GPOS_Table (gpos)))
croak ("FT_Done_GPOS_Table", error);
}
else
else if (error != FT_Err_Table_Missing)
fprintf (stderr, "TT_Load_GPOS_Table %x\n", error);
printf ("</OpenType>\n");
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册