~ubuntu-branches/ubuntu/feisty/pango1.0/feisty

« back to all changes in this revision

Viewing changes to pango/opentype/harfbuzz-open.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2007-04-10 00:59:24 UTC
  • mfrom: (20.1.23 feisty)
  • Revision ID: james.westby@ubuntu.com-20070410005924-bbuu8vi6fw9f1fn1
Tags: 1.16.2-0ubuntu1
* New upstream version
  - Fixed various bug in the OpenType Layout code
  - Improved documentation
  - Improved ATSUI backend
  - Misc build system fixes
  - Bugs fixed in this release:
    - pangowin32-fontmap.c:using function without prototype
    - Don't create coverage every time it's asked for

Show diffs side-by-side

added added

removed removed

Lines of Context:
1191
1191
    *index = 0;
1192
1192
 
1193
1193
  if ( glyphID >= cdf1->StartGlyph &&
1194
 
       glyphID <= cdf1->StartGlyph + cdf1->GlyphCount )
 
1194
       glyphID < cdf1->StartGlyph + cdf1->GlyphCount )
1195
1195
  {
1196
1196
    *class = cva[glyphID - cdf1->StartGlyph];
1197
1197
    return FT_Err_Ok;