<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=utf-8">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <p>Let's say I have:</p>
    <p>- a glyph run with three glyphs g1, g2, g3, with hmtx=1500 each</p>
    <p>- a cursive attachment lookup that:</p>
    <p>   - skips over g2, via lookupflags</p>
    <p>   - sets the exit anchor of g1 to x = 200</p>
    <p>   - sets the entry anchor of g3 to x = 101</p>
    <p>It seems that HB gives me x advance/placements of:</p>
    <p><br>
    </p>
    <table border="1" cellpadding="2" cellspacing="2" width="100%">
      <tbody>
        <tr>
          <td valign="top">glyph<br>
          </td>
          <td valign="top">advance<br>
          </td>
          <td valign="top">placement<br>
          </td>
          <td valign="top">position in the line<br>
          </td>
        </tr>
        <tr>
          <td valign="top">g1<br>
          </td>
          <td valign="top">200<br>
          </td>
          <td valign="top">0<br>
          </td>
          <td valign="top">0<br>
          </td>
        </tr>
        <tr>
          <td valign="top">g2<br>
          </td>
          <td valign="top">1500<br>
          </td>
          <td valign="top">0<br>
          </td>
          <td valign="top">200<br>
          </td>
        </tr>
        <tr>
          <td valign="top">g3<br>
          </td>
          <td valign="top">1399<br>
          </td>
          <td valign="top">-101<br>
          </td>
          <td valign="top">1599<br>
          </td>
        </tr>
      </tbody>
    </table>
    <p><br>
    </p>
    I was expecting the position in the line of g3 to be 99. <br>
    <br>
    Who is right?<br>
    <br>
    Thanks,<br>
    Eric.<br>
    <br>
  </body>
</html>