]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix setting cursor when the window's op line has 'line-prefix'
authorEli Zaretskii <eliz@gnu.org>
Sat, 2 Dec 2023 12:13:24 +0000 (14:13 +0200)
committerEli Zaretskii <eliz@gnu.org>
Sat, 2 Dec 2023 12:13:24 +0000 (14:13 +0200)
* src/xdisp.c (set_cursor_from_row): Skip glyphs that come from a
string if their 'avoid_cursor_p' flag is set.  (Bug#67486)

src/xdisp.c

index eb38ebba17baba9f39533fe143a549271d4a2586..5a56b116708bdcce7a165a920b169fc73a12f00b 100644 (file)
@@ -17859,7 +17859,8 @@ set_cursor_from_row (struct window *w, struct glyph_row *row,
            else if (dpos == 0)
              match_with_avoid_cursor = true;
          }
-       else if (STRINGP (glyph->object))
+       else if (STRINGP (glyph->object)
+                && !glyph->avoid_cursor_p)
          {
            Lisp_Object chprop;
            ptrdiff_t glyph_pos = glyph->charpos;
@@ -18085,7 +18086,8 @@ set_cursor_from_row (struct window *w, struct glyph_row *row,
              /* Any glyphs that come from the buffer are here because
                 of bidi reordering.  Skip them, and only pay
                 attention to glyphs that came from some string.  */
-             if (STRINGP (glyph->object))
+             if (STRINGP (glyph->object)
+                 && !glyph->avoid_cursor_p)
                {
                  Lisp_Object str;
                  ptrdiff_t tem;