]> git.eshelyaron.com Git - emacs.git/commitdiff
composite.c (composition_update_it): Fix previous change.
authorKenichi Handa <handa@gnu.org>
Sun, 19 Jan 2014 13:26:21 +0000 (22:26 +0900)
committerKenichi Handa <handa@gnu.org>
Sun, 19 Jan 2014 13:26:21 +0000 (22:26 +0900)
src/ChangeLog
src/composite.c

index 82a5d68b923482ceb1357d708921d59de975c58e..2ef0336388af7ae317d1ef541f5b2cd333e9b86d 100644 (file)
@@ -1,3 +1,7 @@
+2014-01-19  K. Handa  <handa@gnu.org>
+
+       * composite.c (composition_update_it): Fix previous change.
+
 2014-01-18  Eli Zaretskii  <eliz@gnu.org>
 
        Fix file name handling on MS-Windows 9X.
index 40cef814c1da1b552838d66585dc19364d3cd855..04cfe5efee0504352c4c0c6459c2fb75bcd02463 100644 (file)
@@ -1412,7 +1412,7 @@ composition_update_it (struct composition_it *cmp_it, ptrdiff_t charpos, ptrdiff
       cmp_it->width = 0;
       for (i = cmp_it->nchars - 1; i >= 0; i--)
        {
-         c = XINT (LGSTRING_CHAR (gstring, cmp_it->from + i));
+         c = XINT (LGSTRING_CHAR (gstring, from + i));
          cmp_it->nbytes += CHAR_BYTES (c);
          cmp_it->width += CHAR_WIDTH (c);
        }