From: Po Lu via "Bug reports for GNU Emacs, the Swiss army knife of text editors" <bug-gnu-emacs@gnu.org>
To: Eli Zaretskii <eliz@gnu.org>
Cc: larsi@gnus.org, 50660@debbugs.gnu.org
Subject: bug#50660: 28.0.50; Text artifacting when the cursor moves over text under mouse face that originally displayed a box
Date: Thu, 14 Oct 2021 18:52:48 +0800 [thread overview]
Message-ID: <878ryvnain.fsf@yahoo.com> (raw)
In-Reply-To: <83wnmgkmok.fsf@gnu.org> (Eli Zaretskii's message of "Thu, 14 Oct 2021 11:58:19 +0300")
[-- Attachment #1: Type: text/plain, Size: 1004 bytes --]
Eli Zaretskii <eliz@gnu.org> writes:
> It looks like something is still amiss: the cursor blinking display is
> incorrect in some cases. For example, evaluate this in a buffer under
> Fundamental mode:
>
> (insert (propertize "some sample text" 'face '(:box 10) 'mouse-face 'highlight))
>
> and then put the mouse pointer above the text, so it's highlighted,
> and move the text cursor to the first 's' or the last 't'. As long as
> the cursor blinks, you will see two characters drawn in the cursor
> face, not one as expected.
Thanks, here's a patch that should fix the issues, formatted with "git
format-patch", but with one caveat: in your example above, the
background of the character "s" at the beginning of the string "some
sample text" is drawn too wide, but I wasn't able to find the problem.
Could you please take a look at it? Thanks.
I don't know how to apply the fixes to xterm.c to the other window
systems, so someone who can needs to apply them to the NS and MS-Windows
ports.
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-Fix-minor-issues-with-text-display-when-cursor-is-in.patch --]
[-- Type: text/x-patch, Size: 7626 bytes --]
From 6d277be789bf30e0db5b27780bff86151e48f622 Mon Sep 17 00:00:00 2001
From: oldosfan <luangruo@yahoo.com>
Date: Thu, 14 Oct 2021 18:38:26 +0800
Subject: [PATCH] Fix minor issues with text display when cursor is in mouse
face
* src/xdisp.c (get_cursor_offset_for_mouse_face): Don't calculate
offsets for the glyph the cursor is on.
* src/xterm.c (x_draw_glyph_string_foreground,
x_draw_composite_glyph_string_foreground,
x_draw_glyphless_glyph_string_foreground,
x_draw_image_foreground,
x_draw_image_foreground_1): Take mouse face into account when
offsetting X coordinate by the vertical line width.
---
src/xdisp.c | 2 +-
src/xterm.c | 107 ++++++++++++++++++++++++++++++++++++++++++++--------
2 files changed, 93 insertions(+), 16 deletions(-)
diff --git a/src/xdisp.c b/src/xdisp.c
index 012c2ad8bf..0d964b1236 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -36042,7 +36042,7 @@ get_cursor_offset_for_mouse_face (struct window *w, struct glyph_row *row,
/* Calculate the offset to correct phys_cursor x if we are
drawing the cursor inside mouse-face highlighted text. */
- for (; row->reversed_p ? start >= end : start <= end;
+ for (; row->reversed_p ? start > end : start < end;
row->reversed_p ? --start : ++start)
{
struct glyph *g = start;
diff --git a/src/xterm.c b/src/xterm.c
index 89885e0d88..d19f214019 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -1799,11 +1799,24 @@ x_draw_glyph_string_foreground (struct glyph_string *s)
{
int i, x;
+ struct face *face_for_box_line = s->face;
+
+ if (s->hl == DRAW_CURSOR && cursor_in_mouse_face_p (s->w))
+ {
+ /* In this situation, the cursor is in the mouse face, but
+ s->face hasn't been updated with the mouse face yet. */
+ face_for_box_line =
+ FACE_FROM_ID_OR_NULL (s->f, MOUSE_HL_INFO (s->f)->mouse_face_face_id);
+
+ if (!face_for_box_line)
+ face_for_box_line = FACE_FROM_ID (s->f, MOUSE_FACE_ID);
+ }
+
/* If first glyph of S has a left box line, start drawing the text
of S to the right of that box line. */
- if (s->face->box != FACE_NO_BOX
+ if (face_for_box_line->box != FACE_NO_BOX
&& s->first_glyph->left_box_line_p)
- x = s->x + max (s->face->box_vertical_line_width, 0);
+ x = s->x + max (face_for_box_line->box_vertical_line_width, 0);
else
x = s->x;
@@ -1893,11 +1906,24 @@ x_draw_composite_glyph_string_foreground (struct glyph_string *s)
int i, j, x;
struct font *font = s->font;
+ struct face *face_for_box_line = s->face;
+
+ if (s->hl == DRAW_CURSOR && cursor_in_mouse_face_p (s->w))
+ {
+ /* In this situation, the cursor is in the mouse face, but
+ s->face hasn't been updated with the mouse face yet. */
+ face_for_box_line =
+ FACE_FROM_ID_OR_NULL (s->f, MOUSE_HL_INFO (s->f)->mouse_face_face_id);
+
+ if (!face_for_box_line)
+ face_for_box_line = FACE_FROM_ID (s->f, MOUSE_FACE_ID);
+ }
+
/* If first glyph of S has a left box line, start drawing the text
of S to the right of that box line. */
- if (s->face && s->face->box != FACE_NO_BOX
+ if (face_for_box_line->box != FACE_NO_BOX
&& s->first_glyph->left_box_line_p)
- x = s->x + max (s->face->box_vertical_line_width, 0);
+ x = s->x + max (face_for_box_line->box_vertical_line_width, 0);
else
x = s->x;
@@ -2004,11 +2030,24 @@ x_draw_glyphless_glyph_string_foreground (struct glyph_string *s)
unsigned char2b[8];
int x, i, j;
+ struct face *face_for_box_line = s->face;
+
+ if (s->hl == DRAW_CURSOR && cursor_in_mouse_face_p (s->w))
+ {
+ /* In this situation, the cursor is in the mouse face, but
+ s->face hasn't been updated with the mouse face yet. */
+ face_for_box_line =
+ FACE_FROM_ID_OR_NULL (s->f, MOUSE_HL_INFO (s->f)->mouse_face_face_id);
+
+ if (!face_for_box_line)
+ face_for_box_line = FACE_FROM_ID (s->f, MOUSE_FACE_ID);
+ }
+
/* If first glyph of S has a left box line, start drawing the text
of S to the right of that box line. */
- if (s->face && s->face->box != FACE_NO_BOX
+ if (face_for_box_line->box != FACE_NO_BOX
&& s->first_glyph->left_box_line_p)
- x = s->x + max (s->face->box_vertical_line_width, 0);
+ x = s->x + max (face_for_box_line->box_vertical_line_width, 0);
else
x = s->x;
@@ -3073,12 +3112,25 @@ x_draw_image_foreground (struct glyph_string *s)
int x = s->x;
int y = s->ybase - image_ascent (s->img, s->face, &s->slice);
+ struct face *face_for_box_line = s->face;
+
+ if (s->hl == DRAW_CURSOR && cursor_in_mouse_face_p (s->w))
+ {
+ /* In this situation, the cursor is in the mouse face, but
+ s->face hasn't been updated with the mouse face yet. */
+ face_for_box_line =
+ FACE_FROM_ID_OR_NULL (s->f, MOUSE_HL_INFO (s->f)->mouse_face_face_id);
+
+ if (!face_for_box_line)
+ face_for_box_line = FACE_FROM_ID (s->f, MOUSE_FACE_ID);
+ }
+
/* If first glyph of S has a left box line, start drawing it to the
- right of that line. */
- if (s->face->box != FACE_NO_BOX
+ right of that box line. */
+ if (face_for_box_line->box != FACE_NO_BOX
&& s->first_glyph->left_box_line_p
&& s->slice.x == 0)
- x += max (s->face->box_vertical_line_width, 0);
+ x += max (face_for_box_line->box_vertical_line_width, 0);
/* If there is a margin around the image, adjust x- and y-position
by that margin. */
@@ -3191,13 +3243,25 @@ x_draw_image_relief (struct glyph_string *s)
XRectangle r;
int x = s->x;
int y = s->ybase - image_ascent (s->img, s->face, &s->slice);
+ struct face *face_for_box_line = s->face;
+
+ if (s->hl == DRAW_CURSOR && cursor_in_mouse_face_p (s->w))
+ {
+ /* In this situation, the cursor is in the mouse face, but
+ s->face hasn't been updated with the mouse face yet. */
+ face_for_box_line =
+ FACE_FROM_ID_OR_NULL (s->f, MOUSE_HL_INFO (s->f)->mouse_face_face_id);
+
+ if (!face_for_box_line)
+ face_for_box_line = FACE_FROM_ID (s->f, MOUSE_FACE_ID);
+ }
/* If first glyph of S has a left box line, start drawing it to the
- right of that line. */
- if (s->face->box != FACE_NO_BOX
+ right of that box line. */
+ if (face_for_box_line->box != FACE_NO_BOX
&& s->first_glyph->left_box_line_p
&& s->slice.x == 0)
- x += max (s->face->box_vertical_line_width, 0);
+ x += max (face_for_box_line->box_vertical_line_width, 0);
/* If there is a margin around the image, adjust x- and y-position
by that margin. */
@@ -3282,12 +3346,25 @@ x_draw_image_foreground_1 (struct glyph_string *s, Pixmap pixmap)
int x = 0;
int y = s->ybase - s->y - image_ascent (s->img, s->face, &s->slice);
+ struct face *face_for_box_line = s->face;
+
+ if (s->hl == DRAW_CURSOR && cursor_in_mouse_face_p (s->w))
+ {
+ /* In this situation, the cursor is in the mouse face, but
+ s->face hasn't been updated with the mouse face yet. */
+ face_for_box_line =
+ FACE_FROM_ID_OR_NULL (s->f, MOUSE_HL_INFO (s->f)->mouse_face_face_id);
+
+ if (!face_for_box_line)
+ face_for_box_line = FACE_FROM_ID (s->f, MOUSE_FACE_ID);
+ }
+
/* If first glyph of S has a left box line, start drawing it to the
- right of that line. */
- if (s->face->box != FACE_NO_BOX
+ right of that box line. */
+ if (face_for_box_line->box != FACE_NO_BOX
&& s->first_glyph->left_box_line_p
&& s->slice.x == 0)
- x += max (s->face->box_vertical_line_width, 0);
+ x += max (face_for_box_line->box_vertical_line_width, 0);
/* If there is a margin around the image, adjust x- and y-position
by that margin. */
--
2.31.1
next prev parent reply other threads:[~2021-10-14 10:52 UTC|newest]
Thread overview: 83+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <87czp6ysw7.fsf.ref@yahoo.com>
2021-09-18 12:23 ` bug#50660: 28.0.50; Text artifacting when the cursor moves over text under mouse face that originally displayed a box Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-09-18 13:48 ` Lars Ingebrigtsen
2021-09-19 0:33 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-09-19 5:47 ` Eli Zaretskii
2021-09-19 13:55 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-09-19 15:13 ` Lars Ingebrigtsen
2021-09-19 17:01 ` Eli Zaretskii
2021-09-20 1:00 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-09-20 5:19 ` Eli Zaretskii
2021-09-20 5:34 ` Eli Zaretskii
2021-09-20 8:02 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-09-20 7:07 ` Eli Zaretskii
2021-09-20 7:34 ` Eli Zaretskii
2021-09-20 8:18 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-09-20 9:47 ` Eli Zaretskii
2021-09-20 10:27 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-09-20 10:51 ` Eli Zaretskii
2021-09-20 11:08 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-09-20 12:07 ` Eli Zaretskii
2021-09-20 12:36 ` Eli Zaretskii
2021-09-21 0:38 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-09-21 6:11 ` Eli Zaretskii
2021-09-21 7:34 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-09-21 8:45 ` Eli Zaretskii
2021-09-21 9:20 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-09-21 9:37 ` Eli Zaretskii
2021-09-21 9:45 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-09-21 10:17 ` Eli Zaretskii
2021-09-21 10:41 ` Eli Zaretskii
2021-09-21 12:26 ` Eli Zaretskii
2021-09-20 11:09 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-09-21 12:46 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-09-21 13:10 ` Eli Zaretskii
2021-09-21 13:36 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-09-21 13:47 ` Eli Zaretskii
2021-09-23 23:53 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-09-24 6:47 ` Eli Zaretskii
2021-09-26 6:46 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-09-26 7:04 ` Eli Zaretskii
2021-09-26 9:56 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-09-27 11:52 ` Eli Zaretskii
2021-09-29 1:35 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-10-02 8:43 ` Eli Zaretskii
2021-10-02 9:46 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-10-02 12:52 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-10-14 8:58 ` Eli Zaretskii
2021-10-14 10:52 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors [this message]
2021-10-14 11:11 ` Robert Pluim
2021-10-14 11:25 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-10-14 11:35 ` Eli Zaretskii
2021-10-14 11:54 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-10-14 12:10 ` Eli Zaretskii
2021-10-14 12:16 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-10-14 12:20 ` Eli Zaretskii
2021-10-14 12:27 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-10-14 12:44 ` Eli Zaretskii
2021-10-14 13:11 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-10-14 15:51 ` Eli Zaretskii
2021-10-15 1:28 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-10-15 13:43 ` Eli Zaretskii
2021-10-16 0:18 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-10-16 6:09 ` Eli Zaretskii
2021-10-16 6:16 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-10-16 6:28 ` Eli Zaretskii
2021-10-16 6:39 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-10-16 7:00 ` Eli Zaretskii
2021-10-16 7:13 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-10-16 7:26 ` Eli Zaretskii
2021-10-16 7:52 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-10-16 10:10 ` Eli Zaretskii
2021-10-16 12:12 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-10-16 12:25 ` Eli Zaretskii
2021-10-16 12:36 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-10-16 12:45 ` Eli Zaretskii
2021-10-16 13:18 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-10-16 13:46 ` Eli Zaretskii
2021-10-17 0:32 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-10-17 12:15 ` Eli Zaretskii
2021-10-17 12:39 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-09-20 8:02 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-09-20 6:33 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-09-19 0:50 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-09-19 15:10 ` Lars Ingebrigtsen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=878ryvnain.fsf@yahoo.com \
--to=bug-gnu-emacs@gnu.org \
--cc=50660@debbugs.gnu.org \
--cc=eliz@gnu.org \
--cc=larsi@gnus.org \
--cc=luangruo@yahoo.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.