compilation-mode-font-lock-keywords
compilation-mode-font-lock-keywords is a variable defined in `
compile.el
'.
Its value is shown
below.
- This variable may be risky if used as a file-local variable.
Documentation:
Additional things to highlight in Compilation mode.
This gets tacked on the end of the generated expressions.
Value:
(("^[Cc]hecking \\(?:[Ff]or \\|[Ii]f \\|[Ww]hether \\(?:to \\)?\\)?\\(.+\\)\\.\\.\\. *\\(?:(cached) *\\)?\\(\\(yes\\(?: .+\\)?\\)\\|no\\|\\(.*\\)\\)$"
(1 font-lock-variable-name-face)
(2
(compilation-face
'(4 . 3))))
("^\\([[:alnum:]_/.+-]+\\)\\(\\[\\([0-9]+\\)\\]\\)?[ ]*:"
(1 font-lock-function-name-face)
(3 compilation-line-face nil t))
(" --?o\\(?:utfile\\|utput\\)?[= ]\\(\\S +\\)" . 1)
("^Compilation \\(finished\\).*"
(0
'(face nil compilation-message nil help-echo nil mouse-face nil)
t)
(1 compilation-info-face))
("^Compilation \\(exited abnormally\\|interrupt\\|killed\\|terminated\\|segmentation fault\\)\\(?:.*with code \\([0-9]+\\)\\)?.*"
(0
'(face nil compilation-message nil help-echo nil mouse-face nil)
t)
(1 compilation-error-face)
(2 compilation-error-face nil t)))