From: Juri Linkov Date: Thu, 29 Sep 2005 22:57:28 +0000 (+0000) Subject: (compilation-error, compilation-warning) X-Git-Tag: emacs-pretest-22.0.90~6912 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=da7422052c34089aedccd17fc864ebe1cd4c759c;p=emacs.git (compilation-error, compilation-warning) (compilation-info, compilation-line-number, compilation-column-number): Change group from `font-lock-highlighting-faces' to `compilation'. --- diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 3ef1c0c1ff6..1655aa33dcb 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -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