]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix 'C-a' and 'C-e' under 'visual-line-mode'
authorEli Zaretskii <eliz@gnu.org>
Sat, 1 Oct 2022 06:24:04 +0000 (09:24 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 1 Oct 2022 06:24:04 +0000 (09:24 +0300)
* src/xdisp.c (move_it_vertically_backward): Fix last change.
(Bug#58210)

src/xdisp.c

index 55e74a360374b381ecc346b06c2c4d5eec3f756e..95e97a0bb8e8940413fd5db1d2b5171896b28cb1 100644 (file)
@@ -10776,7 +10776,9 @@ move_it_vertically_backward (struct it *it, int dy)
   if (dy == 0)
     {
       /* Adjust nlines for increasing it at the beginning.  */
-      nlines -= !!it->bidi_p;
+      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,
         or if the original IT position was at start of a line.  */