diff lisp/progmodes/compile.el @ 65734:77732e123c4e

(compilation-error, compilation-warning) (compilation-info, compilation-line-number, compilation-column-number): Change group from `font-lock-highlighting-faces' to `compilation'.
author Juri Linkov <juri@jurta.org>
date Thu, 29 Sep 2005 22:57:28 +0000
parents e78a07e4c513
children a2cbf1cc9c6d b1c1fc853d2f
line wrap: on
line diff
--- a/lisp/progmodes/compile.el	Thu Sep 29 22:56:45 2005 +0000
+++ b/lisp/progmodes/compile.el	Thu Sep 29 22:57:28 2005 +0000
@@ -490,7 +490,7 @@
 (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 @@
     (((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 @@
     (((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