]> git.eshelyaron.com Git - emacs.git/commitdiff
; (move_it_vertically_backward): Yet another fix of bug#58210.
authorEli Zaretskii <eliz@gnu.org>
Sat, 1 Oct 2022 12:44:23 +0000 (15:44 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 1 Oct 2022 12:44:23 +0000 (15:44 +0300)
src/xdisp.c

index 95e97a0bb8e8940413fd5db1d2b5171896b28cb1..bee17bd6d7f44ad5ea88356e7b6ac396ad2ef8f7 100644 (file)
@@ -10775,15 +10775,11 @@ move_it_vertically_backward (struct it *it, int dy)
 
   if (dy == 0)
     {
-      /* Adjust nlines for increasing it at the beginning.  */
-      if (it2.bidi_p
-         && !(it2.line_wrap == WORD_WRAP && it2.continuation_lines_width))
-       nlines--;
       /* DY == 0 means move to the start of the screen line.  The
-        value of nlines is > 0 if continuation lines were involved,
+        value of nlines is > 1 if continuation lines were involved,
         or if the original IT position was at start of a line.  */
       RESTORE_IT (it, it, it2data);
-      if (nlines > 0)
+      if (nlines > 1)
        move_it_by_lines (it, nlines);
       /* The above code moves us to some position NLINES down,
         usually to its first glyph (leftmost in an L2R line), but