diff options
| author | Paul Eggert | 2014-12-28 09:00:14 -0800 |
|---|---|---|
| committer | Paul Eggert | 2014-12-28 09:00:41 -0800 |
| commit | 20791069fa34b486c018ba7f27982bdc6ad2a4ea (patch) | |
| tree | fe895873e492db9dd92e8c56c81d8c0903ec4174 /src/term.c | |
| parent | 79e2dade762491c58aa6396e35bae0ef418bafc6 (diff) | |
| download | emacs-20791069fa34b486c018ba7f27982bdc6ad2a4ea.tar.gz emacs-20791069fa34b486c018ba7f27982bdc6ad2a4ea.zip | |
Fix produce_composite_width typo
* term.c (produce_composite_glyph):
Fix typo that confused number of columns for pixel width.
Diffstat (limited to 'src/term.c')
| -rw-r--r-- | src/term.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/term.c b/src/term.c index 04f6e3318a0..bcb83e5891d 100644 --- a/src/term.c +++ b/src/term.c | |||
| @@ -1736,7 +1736,7 @@ produce_composite_glyph (struct it *it) | |||
| 1736 | { | 1736 | { |
| 1737 | struct composition *cmp = composition_table[it->cmp_it.id]; | 1737 | struct composition *cmp = composition_table[it->cmp_it.id]; |
| 1738 | 1738 | ||
| 1739 | it->pixel_width = cmp->width; | 1739 | it->pixel_width = cmp->pixel_width; |
| 1740 | } | 1740 | } |
| 1741 | else | 1741 | else |
| 1742 | { | 1742 | { |