Fix produce_composite_width typo

* term.c (produce_composite_glyph):
Fix typo that confused number of columns for pixel width.
This commit is contained in:
Paul Eggert 2014-12-28 09:00:14 -08:00
parent 79e2dade76
commit 20791069fa
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2014-12-28 Paul Eggert <eggert@cs.ucla.edu>
Fix produce_composite_width typo
* term.c (produce_composite_glyph):
Fix typo that confused number of columns for pixel width.
2014-12-28 Paul Eggert <eggert@Penguin.CS.UCLA.EDU>
Wrap dll functions more simply

View file

@ -1736,7 +1736,7 @@ produce_composite_glyph (struct it *it)
{
struct composition *cmp = composition_table[it->cmp_it.id];
it->pixel_width = cmp->width;
it->pixel_width = cmp->pixel_width;
}
else
{