emacs-devel
[Top][All Lists]
Advanced

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

Re: highlight current line when Emacs is idle


From: Stefan Monnier
Subject: Re: highlight current line when Emacs is idle
Date: Fri, 13 Jul 2007 11:13:48 -0400
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1.50 (gnu/linux)

>   (defface hl-line
> !     '((((class color) (min-colors 88) (background light)) :background
> "SlateGray3")
> !       (t :inherit highlight))

I think it is generally an error for a face to inherit in some cases and not
in others.

I.e. the above should be

  (defface hl-line
     '((default :inherit highlight)
       (((class color) (min-colors 88) (background light))
        :background "SlateGray3"))


-- Stefan




reply via email to

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