aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/progmodes/compile.el10
1 files changed, 5 insertions, 5 deletions
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.")
490(defface compilation-error 490(defface compilation-error
491 '((t :inherit font-lock-warning-face)) 491 '((t :inherit font-lock-warning-face))
492 "Face used to highlight compiler errors." 492 "Face used to highlight compiler errors."
493 :group 'font-lock-highlighting-faces 493 :group 'compilation
494 :version "22.1") 494 :version "22.1")
495 495
496(defface compilation-warning 496(defface compilation-warning
@@ -498,7 +498,7 @@ starting the compilation process.")
498 (((class color)) (:foreground "cyan" :weight bold)) 498 (((class color)) (:foreground "cyan" :weight bold))
499 (t (:weight bold))) 499 (t (:weight bold)))
500 "Face used to highlight compiler warnings." 500 "Face used to highlight compiler warnings."
501 :group 'font-lock-highlighting-faces 501 :group 'compilation
502 :version "22.1") 502 :version "22.1")
503 503
504(defface compilation-info 504(defface compilation-info
@@ -511,19 +511,19 @@ starting the compilation process.")
511 (((class color)) (:foreground "green" :weight bold)) 511 (((class color)) (:foreground "green" :weight bold))
512 (t (:weight bold))) 512 (t (:weight bold)))
513 "Face used to highlight compiler information." 513 "Face used to highlight compiler information."
514 :group 'font-lock-highlighting-faces 514 :group 'compilation
515 :version "22.1") 515 :version "22.1")
516 516
517(defface compilation-line-number 517(defface compilation-line-number
518 '((t :inherit font-lock-variable-name-face)) 518 '((t :inherit font-lock-variable-name-face))
519 "Face for displaying line numbers in compiler messages." 519 "Face for displaying line numbers in compiler messages."
520 :group 'font-lock-highlighting-faces 520 :group 'compilation
521 :version "22.1") 521 :version "22.1")
522 522
523(defface compilation-column-number 523(defface compilation-column-number
524 '((t :inherit font-lock-type-face)) 524 '((t :inherit font-lock-type-face))
525 "Face for displaying column numbers in compiler messages." 525 "Face for displaying column numbers in compiler messages."
526 :group 'font-lock-highlighting-faces 526 :group 'compilation
527 :version "22.1") 527 :version "22.1")
528 528
529(defvar compilation-message-face 'underline 529(defvar compilation-message-face 'underline