diff options
author | Werner Lemberg <wl@gnu.org> | 2011-04-02 07:15:33 +0200 |
---|---|---|
committer | Werner Lemberg <wl@gnu.org> | 2011-04-02 07:15:33 +0200 |
commit | 544adf7313b72768a7390c443dbcdae681fbb65d (patch) | |
tree | 93a54e3c4bc1ab8a4f49e0eeac025339edfb7041 /src | |
parent | ef11551868691b0a2764eb7139c0d3f2e0b58e55 (diff) |
Whitespace, typo.
Diffstat (limited to 'src')
-rw-r--r-- | src/autofit/aflatin.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/autofit/aflatin.c b/src/autofit/aflatin.c index 59176fb6..7aaad91b 100644 --- a/src/autofit/aflatin.c +++ b/src/autofit/aflatin.c @@ -123,7 +123,7 @@ dist = -dist; if ( num_widths < AF_LATIN_MAX_WIDTHS ) - axis->widths[ num_widths++ ].org = dist; + axis->widths[num_widths++].org = dist; } } @@ -1308,10 +1308,10 @@ af_latin_hints_compute_blue_edges( AF_GlyphHints hints, AF_LatinMetrics metrics ) { - AF_AxisHints axis = &hints->axis[ AF_DIMENSION_VERT ]; + AF_AxisHints axis = &hints->axis[AF_DIMENSION_VERT]; AF_Edge edge = axis->edges; AF_Edge edge_limit = edge + axis->num_edges; - AF_LatinAxis latin = &metrics->axis[ AF_DIMENSION_VERT ]; + AF_LatinAxis latin = &metrics->axis[AF_DIMENSION_VERT]; FT_Fixed scale = latin->scale; @@ -1330,7 +1330,7 @@ /* (the value 40 is heuristic) */ best_dist = FT_MulFix( metrics->units_per_em / 40, scale ); - /* assure a minumum distance of 0.5px */ + /* assure a minimum distance of 0.5px */ if ( best_dist > 64 / 2 ) best_dist = 64 / 2; |