emacs-devel
[Top][All Lists]
Advanced

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

Re: compile.el underlining


From: Stefan Monnier
Subject: Re: compile.el underlining
Date: Fri, 17 Jun 2005 11:41:26 -0400
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (gnu/linux)

> + (defface compilation-error-file-name
> +   '((default :inherit font-lock-warning-face)
> +     (((supports :underline t)) :underline t))
> +   "Face for displaying file names in compilation errors."
> +   :group 'font-lock-highlighting-faces
> +   :version "22.1")

Is there a reason you use

   '((default :inherit font-lock-warning-face)
     (((supports :underline t)) :underline t))

rather than

   '((default :inherit font-lock-warning-face)
     (t :underline t))

after all, if it's not supported the setting is harmless.


        Stefan




reply via email to

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