diff options
author | Eli Zaretskii <eliz@gnu.org> | 2023-02-26 11:34:14 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2023-02-26 11:34:14 +0200 |
commit | 5256392a7ec0639ba4ba684d608bb3aaf976c985 (patch) | |
tree | f26a64d68d895f1461ac35733810f166a61c1d70 /src/indent.c | |
parent | 0db88d625a7ca1468af51ef0a04c22577500e059 (diff) | |
download | emacs-5256392a7ec0639ba4ba684d608bb3aaf976c985.tar.gz emacs-5256392a7ec0639ba4ba684d608bb3aaf976c985.tar.bz2 emacs-5256392a7ec0639ba4ba684d608bb3aaf976c985.zip |
Fix 'vertical-motion' when display strings are around
* src/indent.c (Fvertical_motion): Correct bidi-related condition
for character position, when we didn't move vertically. (Bug#61636)
Diffstat (limited to 'src/indent.c')
-rw-r--r-- | src/indent.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/indent.c b/src/indent.c index 6de18d749ca..08d2bf5ea28 100644 --- a/src/indent.c +++ b/src/indent.c @@ -2401,7 +2401,7 @@ whether or not it is currently displayed in some window. */) last line that it occupies. */ if (it_start < ZV) { - if ((it.bidi_it.scan_dir > 0) + if ((it.bidi_it.scan_dir >= 0 || it.vpos == vpos_init) ? IT_CHARPOS (it) < it_start : IT_CHARPOS (it) > it_start) { |