diff options
| author | Kenichi Handa | 2010-08-30 10:58:52 +0900 |
|---|---|---|
| committer | Kenichi Handa | 2010-08-30 10:58:52 +0900 |
| commit | 63257f6c19fb4924de5841a5232113a0d5ebbdc2 (patch) | |
| tree | 78a4ac3db549dc9fe35da18b767d46a56b171d05 /src | |
| parent | 49a752bbf9065bae75aba1f1cea1ae8d6132438a (diff) | |
| download | emacs-63257f6c19fb4924de5841a5232113a0d5ebbdc2.tar.gz emacs-63257f6c19fb4924de5841a5232113a0d5ebbdc2.zip | |
composite.c (composition_update_it): Fix previous change
Diffstat (limited to 'src')
| -rw-r--r-- | src/composite.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/composite.c b/src/composite.c index 96474f43fab..bc5a67ef6e2 100644 --- a/src/composite.c +++ b/src/composite.c | |||
| @@ -1440,7 +1440,7 @@ composition_update_it (struct composition_it *cmp_it, EMACS_INT charpos, EMACS_I | |||
| 1440 | { | 1440 | { |
| 1441 | c = XINT (LGSTRING_CHAR (gstring, i)); | 1441 | c = XINT (LGSTRING_CHAR (gstring, i)); |
| 1442 | cmp_it->nbytes += CHAR_BYTES (c); | 1442 | cmp_it->nbytes += CHAR_BYTES (c); |
| 1443 | cmp_it->width += LGLYPH_WIDTH (glyph) > 0 ? CHAR_WIDTH (c) : 0; | 1443 | cmp_it->width += CHAR_WIDTH (c); |
| 1444 | } | 1444 | } |
| 1445 | } | 1445 | } |
| 1446 | return c; | 1446 | return c; |