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:
parent
79e2dade76
commit
20791069fa
2 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue