bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#21500: 24.5; Graphical glitch with display property lines in GUI Ema


From: Eli Zaretskii
Subject: bug#21500: 24.5; Graphical glitch with display property lines in GUI Emacs
Date: Sat, 26 Sep 2015 14:02:49 +0300

> Date: Sat, 26 Sep 2015 12:56:43 +0200
> From: Vasilij Schneidermann <v.schneidermann@gmail.com>
> Cc: 21500@debbugs.gnu.org
> 
> > I'm not sure why would you need to use :distant-foreground, but maybe
> > your actual situation is more complicated than the test case you
> > presented in this bug report.  With that test case, if I modify the
> > face definition like this:
> > 
> >   (defface my-line
> >     '((((type graphic)) :background "yellow")
> >       (((type tty)) :inherit font-lock-comment-face :underline t))
> >     "Line face")
> > 
> > I see the line in question all the time.  Is this what you want?
> 
> Well, that works, but it does get rid of the line alltogether, so that's
> hardly a solution.

Is the below better?

(defface my-line
  '((((type graphic))
     :inherit font-lock-comment-face
     :strike-through t
     :background "yellow")
    (((type tty)) :inherit font-lock-comment-face :underline t))
  "Line face")





reply via email to

[Prev in Thread] Current Thread [Next in Thread]