mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-23 13:27:36 +00:00
(compilation-error, compilation-warning)
(compilation-info, compilation-line-number, compilation-column-number): Change group from `font-lock-highlighting-faces' to `compilation'.
This commit is contained in:
parent
2a8f2d4c09
commit
da7422052c
1 changed files with 5 additions and 5 deletions
|
|
@ -490,7 +490,7 @@ starting the compilation process.")
|
|||
(defface compilation-error
|
||||
'((t :inherit font-lock-warning-face))
|
||||
"Face used to highlight compiler errors."
|
||||
:group 'font-lock-highlighting-faces
|
||||
:group 'compilation
|
||||
:version "22.1")
|
||||
|
||||
(defface compilation-warning
|
||||
|
|
@ -498,7 +498,7 @@ starting the compilation process.")
|
|||
(((class color)) (:foreground "cyan" :weight bold))
|
||||
(t (:weight bold)))
|
||||
"Face used to highlight compiler warnings."
|
||||
:group 'font-lock-highlighting-faces
|
||||
:group 'compilation
|
||||
:version "22.1")
|
||||
|
||||
(defface compilation-info
|
||||
|
|
@ -511,19 +511,19 @@ starting the compilation process.")
|
|||
(((class color)) (:foreground "green" :weight bold))
|
||||
(t (:weight bold)))
|
||||
"Face used to highlight compiler information."
|
||||
:group 'font-lock-highlighting-faces
|
||||
:group 'compilation
|
||||
:version "22.1")
|
||||
|
||||
(defface compilation-line-number
|
||||
'((t :inherit font-lock-variable-name-face))
|
||||
"Face for displaying line numbers in compiler messages."
|
||||
:group 'font-lock-highlighting-faces
|
||||
:group 'compilation
|
||||
:version "22.1")
|
||||
|
||||
(defface compilation-column-number
|
||||
'((t :inherit font-lock-type-face))
|
||||
"Face for displaying column numbers in compiler messages."
|
||||
:group 'font-lock-highlighting-faces
|
||||
:group 'compilation
|
||||
:version "22.1")
|
||||
|
||||
(defvar compilation-message-face 'underline
|
||||
|
|
|
|||
Loading…
Reference in a new issue