]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix produce_composite_width typo
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 28 Dec 2014 17:00:14 +0000 (09:00 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 28 Dec 2014 17:00:41 +0000 (09:00 -0800)
* term.c (produce_composite_glyph):
Fix typo that confused number of columns for pixel width.

src/ChangeLog
src/term.c

index 9e3fb904b93d5a7f6c36b4c74081c69166826e3a..2ab5101fc6f7eb82b73ef4797e79e8376d71bccb 100644 (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
index 04f6e3318a0fe1b4823ac1155db97f967deaaee8..bcb83e5891d9a04949d0c271ead2a44865a34e9c 100644 (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
     {