]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fvertical_motion): Include composition in the case of
authorKenichi Handa <handa@m17n.org>
Mon, 20 Nov 2006 02:47:15 +0000 (02:47 +0000)
committerKenichi Handa <handa@m17n.org>
Mon, 20 Nov 2006 02:47:15 +0000 (02:47 +0000)
overshoot expected.

src/indent.c

index 3cbb105e80fdcf260b65e37d9219d4b6ec2a039d..a30ef6edf7ba5f699beeb2ff06d1800cb7722dff 100644 (file)
@@ -2088,10 +2088,10 @@ whether or not it is currently displayed in some window.  */)
       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 @@ whether or not it is currently displayed in some window.  */)
        }
       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;