[Poppler-bugs] [Bug 80093] does not render ligatures for TeX Gyre Hermes font anymore
bugzilla-daemon at freedesktop.org
bugzilla-daemon at freedesktop.org
Mon Jul 21 01:36:52 PDT 2014
https://bugs.freedesktop.org/show_bug.cgi?id=80093
--- Comment #6 from Fabian Greffrath <fabian+debian at greffrath.com> ---
This code does both directions.
const size_t namelen = strlen(name);
if (!strchr(name, '_'))
{
// try with interleaved underscores
int i;
char *tempname = malloc ((2 * namelen + 1) * sizeof (*tempname));
tempname[0] = name[0];
for (i = 1; i < namelen; i++)
{
tempname[2*i] = name[i];
tempname[2*i-1] = '_';
}
}
else
{
// try without interleaved underscores
int i, j;
char *tempname = malloc ((namelen + 1) * sizeof (*tempname));
for (i = j = 0; i < namelen; i++)
{
if (name[i] != '_')
tempname[j++] = name[i];
}
}
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.freedesktop.org/archives/poppler-bugs/attachments/20140721/b629f41c/attachment.html>
More information about the Poppler-bugs
mailing list