From: Ergus <spacibba@aol.com>
To: Eli Zaretskii <eliz@gnu.org>
Cc: emacs-devel@gnu.org
Subject: Re: Merging the underline attribute at EOL
Date: Tue, 17 Dec 2019 15:13:45 +0100 [thread overview]
Message-ID: <20191217141345.z3ldbj4nolrgmbqo@Ergus> (raw)
In-Reply-To: <83lfrb4owb.fsf@gnu.org>
[-- Attachment #1: Type: text/plain, Size: 799 bytes --]
Hi Eli:
Please give a look to the attached patch I am still testing it. But just
to check if it solves all the issues you see.
Best
Ergus
On Tue, Dec 17, 2019 at 05:22:28AM +0200, Eli Zaretskii wrote:
>> Date: Mon, 16 Dec 2019 21:31:56 +0100
>> From: Ergus <spacibba@aol.com>
>> Cc: emacs-devel@gnu.org
>>
>> I had build a wrong branch where I have actually added
>>
>> NILP (face->lface[LFACE_EXTEND_INDEX])
>>
>> to the condition you mention.
>>
>> Actually the question is why there is only:
>>
>> face->box == FACE_NO_BOX
>>
>> Maybe we have to remove it and rely only in the extend attribute?
>
>If the extend attribute is set, but the background color is the same
>as the default, and there's no box/underline/overline/strikethrough
>attributes set, then we can still return early, no?
>
[-- Attachment #2: test.patch --]
[-- Type: text/plain, Size: 864 bytes --]
diff --git a/src/xdisp.c b/src/xdisp.c
index 08c6927052..fdf10894bf 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -21596,13 +21596,17 @@ extend_face_to_end_of_line (struct it *it)
if (FRAME_WINDOW_P (f)
&& MATRIX_ROW_DISPLAYS_TEXT_P (it->glyph_row)
- && face->box == FACE_NO_BOX
&& FACE_COLOR_TO_PIXEL (face->background, f) == FRAME_BACKGROUND_PIXEL (f)
#ifdef HAVE_WINDOW_SYSTEM
&& !face->stipple
#endif
&& !it->glyph_row->reversed_p
- && !Vdisplay_fill_column_indicator)
+ && !Vdisplay_fill_column_indicator
+ && (NILP (face->lface[LFACE_EXTEND_INDEX])
+ ||(face->box == FACE_NO_BOX
+ && face->underline == FACE_NO_UNDERLINE
+ && face->overline_p == false
+ && face->strike_through_p == false)))
return;
/* Set the glyph row flag indicating that the face of the last glyph
next prev parent reply other threads:[~2019-12-17 14:13 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-12-14 8:28 Merging the underline attribute at EOL Eli Zaretskii
2019-12-16 3:12 ` Ergus
2019-12-16 16:12 ` Eli Zaretskii
2019-12-16 3:49 ` Ergus
2019-12-16 16:17 ` Eli Zaretskii
2019-12-16 16:11 ` Ergus
2019-12-16 17:05 ` Eli Zaretskii
2019-12-16 20:31 ` Ergus
2019-12-17 3:22 ` Eli Zaretskii
2019-12-17 14:13 ` Ergus [this message]
2019-12-17 17:18 ` Eli Zaretskii
2019-12-19 1:19 ` Ergus
2019-12-19 15:38 ` Eli Zaretskii
2019-12-22 22:46 ` Ergus
2019-12-23 13:35 ` Eli Zaretskii
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=20191217141345.z3ldbj4nolrgmbqo@Ergus \
--to=spacibba@aol.com \
--cc=eliz@gnu.org \
--cc=emacs-devel@gnu.org \
/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.