all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Eli Zaretskii <eliz@gnu.org>
To: Aaron Jensen <aaronjensen@gmail.com>
Cc: alptekin.aker@gmail.com, 30553@debbugs.gnu.org
Subject: bug#30553: 26.0.91; underline appears beneath line-spacing rather than beneath text
Date: Mon, 26 Feb 2018 21:25:45 +0200	[thread overview]
Message-ID: <83inaj1rk6.fsf@gnu.org> (raw)
In-Reply-To: <CAHyO48wR+ZBoLMeDoAUSDp6PrNmmoROQeZoBLaN=5dAK5dCwaA@mail.gmail.com> (message from Aaron Jensen on Mon, 26 Feb 2018 08:01:03 -0800)

> From: Aaron Jensen <aaronjensen@gmail.com>
> Date: Mon, 26 Feb 2018 08:01:03 -0800
> Cc: Alp Aker <alptekin.aker@gmail.com>, 30553@debbugs.gnu.org
> 
> > In general, you cannot assume in display code that buffer-local
> > variables have their expected values, because redisplay needs to
> > redraw windows other than the selected one, and when it does so, the
> > window's buffer is not made the current one in the full sense of the
> > word.  What you saw is the display engine using the value from the
> > last buffer that was current before a redisplay cycle.  So you need to
> > explicitly access buffer-local values by calling buffer_local_value;
> > see the examples of that in xdisp.c.
> 
> Ok, that makes sense. Would you like me to make that change for all of
> them given my description below?

"All" meaning the two involved in the underline position, right?  Yes,
that would be a good addition, I think.

> Is there some performance penalty to this?

Not really, no.  If the variable is buffer-local, it will incur a
small penalty, but we already have a couple of such variables
elsewhere in the display, so I doubt one more will make any tangible
difference.  And for the usual case of a global symbol, there's no
penalty beyond a function call.

> I briefly described this above, but here are some more details. Today,
> globally, I'm using:
> 
>             (setq x-underline-at-descent-line t)
> 
> This was the default in spacemacs and it's likely because of #30609
> (underlines drawn over descenders make text hard to read) and
> different colored underlines are used heavily with flycheck.

So it's spacemacs' fault, perhaps exasperated by choosing some font
and/or colors that make this issue more prominent.  Right?  Then how
about asking the spacemacs developers to improve the situation on
their end?

>             (setq-local line-spacing 1)
>             (setq-local x-underline-at-descent-line nil)
>             (setq-local x-use-underline-position-properties t)
> 
> For reasons that led me to create this initial bug report:
> x-underline-at-descent-line looks terrible when line-spacing > 0.
> 
> With this variable, you are right, I no longer need to use
> `setq-local`, I can just set this variable globally and it will look
> reasonable for code and prose.

Good, that's what I thought.

> That said, I'm not sure exactly what you meant by: "if you set these
> variables to ignore the line-spacing", are you referring to the new
> variable I introduced or are you OK with me making a change to
> x-underline-at-descent-line to ignore line spacing?

I meant to suggest what you did: customize x-underline-at-descent-line
such that it avoids the effect of line-spacing you didn't like.  I
assumed that such a setting will solve your problems everywhere.
Nonetheless, making it possible to customize those locally for one
buffer would be a good improvement, IMO.

Thanks.





  reply	other threads:[~2018-02-26 19:25 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-02-20 18:16 bug#30553: 26.0.91; underline appears beneath line-spacing rather than beneath text Aaron Jensen
2018-02-20 19:33 ` Eli Zaretskii
2018-02-20 19:44   ` Aaron Jensen
2018-02-21  1:46     ` Alp Aker
2018-02-21  4:23       ` Eli Zaretskii
2018-02-21  4:27         ` Aaron Jensen
2018-02-21  5:01           ` Alp Aker
2018-02-21  6:03             ` Aaron Jensen
2018-02-21 13:47               ` Alp Aker
2018-02-21 16:17                 ` Aaron Jensen
2018-02-21 17:56                   ` Eli Zaretskii
2018-02-22  2:15                     ` Aaron Jensen
2018-02-22  6:26                       ` Eli Zaretskii
2018-02-22  6:29                         ` Aaron Jensen
2018-02-22  7:21                           ` Eli Zaretskii
2018-02-25 22:09                     ` Aaron Jensen
2018-02-26 15:42                       ` Eli Zaretskii
2018-02-26 16:01                         ` Aaron Jensen
2018-02-26 19:25                           ` Eli Zaretskii [this message]
2018-02-26 20:21                             ` Aaron Jensen
2018-02-26 20:41                               ` Eli Zaretskii
2018-02-26 20:46                                 ` Eli Zaretskii
2018-02-26 21:05                                 ` Aaron Jensen
2018-02-27 14:19                                   ` Aaron Jensen
2018-02-27 16:18                                     ` Eli Zaretskii
2018-02-28 15:19                                       ` Aaron Jensen
2018-02-28 16:14                                         ` Eli Zaretskii
2018-02-28 17:41                                           ` Aaron Jensen
2018-02-28 17:56                                             ` Eli Zaretskii
2018-03-01  8:36                                               ` Aaron Jensen
2018-03-08  6:31                                                 ` Aaron Jensen
2018-03-08 13:45                                                   ` Eli Zaretskii
2018-03-10 11:18                                                 ` Eli Zaretskii
2018-03-10 17:47                                                   ` Aaron Jensen
2018-03-10 18:48                                                     ` 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=83inaj1rk6.fsf@gnu.org \
    --to=eliz@gnu.org \
    --cc=30553@debbugs.gnu.org \
    --cc=aaronjensen@gmail.com \
    --cc=alptekin.aker@gmail.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.