diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/xdisp.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 0b67340c1fd..8ad6941a806 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2010-02-26 Kenichi Handa <handa@m17n.org> | ||
| 2 | |||
| 3 | * xdisp.c (reseat_to_string): Fix previous change. | ||
| 4 | |||
| 1 | 2010-02-25 Kenichi Handa <handa@m17n.org> | 5 | 2010-02-25 Kenichi Handa <handa@m17n.org> |
| 2 | 6 | ||
| 3 | * xdisp.c (reseat_to_string): Fix previous change (bug#5609). | 7 | * xdisp.c (reseat_to_string): Fix previous change (bug#5609). |
diff --git a/src/xdisp.c b/src/xdisp.c index 1a078edd074..9ece458e77e 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -5611,7 +5611,7 @@ reseat_to_string (it, s, string, charpos, precision, field_width, multibyte) | |||
| 5611 | it->stop_charpos = charpos; | 5611 | it->stop_charpos = charpos; |
| 5612 | if (s == NULL && it->multibyte_p) | 5612 | if (s == NULL && it->multibyte_p) |
| 5613 | { | 5613 | { |
| 5614 | EMACS_INT endpos = charpos + SCHARS (it->string); | 5614 | EMACS_INT endpos = SCHARS (it->string); |
| 5615 | if (endpos > it->end_charpos) | 5615 | if (endpos > it->end_charpos) |
| 5616 | endpos = it->end_charpos; | 5616 | endpos = it->end_charpos; |
| 5617 | composition_compute_stop_pos (&it->cmp_it, charpos, -1, endpos, | 5617 | composition_compute_stop_pos (&it->cmp_it, charpos, -1, endpos, |