Mercurial > emacs
changeset 74091:4cb12ab18c21
(Fvertical_motion): Include composition in the case of
overshoot expected.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Mon, 20 Nov 2006 02:47:15 +0000 |
parents | e30f926d61f4 |
children | b4cb60fd110d |
files | src/indent.c |
diffstat | 1 files changed, 6 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/src/indent.c Mon Nov 20 02:43:10 2006 +0000 +++ b/src/indent.c Mon Nov 20 02:47:15 2006 +0000 @@ -2088,10 +2088,10 @@ it_start = IT_CHARPOS (it); /* We expect the call to move_it_to, further down, to overshoot - if the starting point is on an image, stretch glyph, or Lisp - string. We won't need to backtrack in this situation, except - for one corner case: when the Lisp string contains a - newline. */ + if the starting point is on an image, stretch glyph, + composition, or Lisp string. We won't need to backtrack in + this situation, except for one corner case: when the Lisp + string contains a newline. */ if (it.method == GET_FROM_STRING) { const char *s = SDATA (it.string); @@ -2104,7 +2104,8 @@ } else it_overshoot_expected_p = (it.method == GET_FROM_IMAGE - || it.method == GET_FROM_STRETCH); + || it.method == GET_FROM_STRETCH + || it.method == GET_FROM_COMPOSITION); reseat_at_previous_visible_line_start (&it); it.current_x = it.hpos = 0;