the glyph is already handled by OTF.
if (MDEBUG_FLAG ())
{
MDEBUG_PRINT ("\n [FLT] (RESULT");
- mfont__get_metric (gstring, from, to);
+ for (i = from; i < to;)
+ {
+ if (MGLYPH (i)->otf_encoded)
+ i++;
+ else
+ {
+ int j = i++;
+
+ while (i < to && ! MGLYPH (i)->otf_encoded) i++;
+ mfont__get_metric (gstring, j, i);
+ }
+ }
if (MDEBUG_FLAG () > 1)
for (i = 0; from < to; from++, i++)
{