* src/cid/cidriver.c (cid_get_postscript_name): fixed a bug that

caused the CID driver to return Postscript font names with a leading
        slash ("/") as in "/MOEKai-Regular"
BRANCH-2-1-5
David Turner 23 years ago
parent e826d8753b
commit 57cd33e0d3
  1. 5
      ChangeLog
  2. 7
      src/cid/cidriver.c

@ -6,7 +6,10 @@
removing the bug that returned global BBox values in
16.16 fixed format (instead of integer font units).
* src/cid/cidriver.c (cid_get_postscript_name): fixed a bug that
caused the CID driver to return Postscript font names with a leading
slash ("/") as in "/MOEKai-Regular"
2002-03-05 Werner Lemberg <wl@gnu.org>

@ -42,7 +42,12 @@
static const char*
cid_get_postscript_name( CID_Face face )
{
return (const char*)face->cid.cid_font_name;
const char* result = face->cid.cid_font_name;
if ( result && result[0] == '/' )
result ++;
return result;
}

Loading…
Cancel
Save