diff options
| author | Richard M. Stallman | 2005-07-23 22:11:30 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-07-23 22:11:30 +0000 |
| commit | 3bec7ffe70c3f1d58e6fcd0e48c0255d5daa55a6 (patch) | |
| tree | 0ad1ed456b11f7f33da02447545218eab58e8110 | |
| parent | bf0bf758f61fafc601a365ffd36b78fd634ceb2e (diff) | |
| download | emacs-3bec7ffe70c3f1d58e6fcd0e48c0255d5daa55a6.tar.gz emacs-3bec7ffe70c3f1d58e6fcd0e48c0255d5daa55a6.zip | |
(compilation-mode-font-lock-keywords):
Don't use compilation-...-face for messages that are not file names.
| -rw-r--r-- | lisp/progmodes/compile.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index d3cbf142222..ff41a964ecc 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el | |||
| @@ -377,13 +377,13 @@ you may also want to change `compilation-page-delimiter'.") | |||
| 377 | '(;; configure output lines. | 377 | '(;; configure output lines. |
| 378 | ("^[Cc]hecking \\(?:[Ff]or \\|[Ii]f \\|[Ww]hether \\(?:to \\)?\\)?\\(.+\\)\\.\\.\\. *\\(?:(cached) *\\)?\\(\\(yes\\(?: .+\\)?\\)\\|no\\|\\(.*\\)\\)$" | 378 | ("^[Cc]hecking \\(?:[Ff]or \\|[Ii]f \\|[Ww]hether \\(?:to \\)?\\)?\\(.+\\)\\.\\.\\. *\\(?:(cached) *\\)?\\(\\(yes\\(?: .+\\)?\\)\\|no\\|\\(.*\\)\\)$" |
| 379 | (1 font-lock-variable-name-face) | 379 | (1 font-lock-variable-name-face) |
| 380 | (2 (compilation-face '(4 . 3)))) | 380 | (2 font-lock-keyword-face)) |
| 381 | ;; Command output lines. Recognize `make[n]:' lines too. | 381 | ;; Command output lines. Recognize `make[n]:' lines too. |
| 382 | ("^\\([[:alnum:]_/.+-]+\\)\\(\\[\\([0-9]+\\)\\]\\)?[ \t]*:" | 382 | ("^\\([[:alnum:]_/.+-]+\\)\\(\\[\\([0-9]+\\)\\]\\)?[ \t]*:" |
| 383 | (1 font-lock-function-name-face) (3 compilation-line-face nil t)) | 383 | (1 font-lock-function-name-face) (3 compilation-line-face nil t)) |
| 384 | (" --?o\\(?:utfile\\|utput\\)?[= ]?\\(\\S +\\)" . 1) | 384 | (" --?o\\(?:utfile\\|utput\\)?[= ]?\\(\\S +\\)" . 1) |
| 385 | ("^Compilation finished" . compilation-info-face) | 385 | ("^Compilation finished" . font-lock-keyword-face) |
| 386 | ("^Compilation exited abnormally" . compilation-error-face)) | 386 | ("^Compilation exited abnormally" . font-lock-keyword-face)) |
| 387 | "Additional things to highlight in Compilation mode. | 387 | "Additional things to highlight in Compilation mode. |
| 388 | This gets tacked on the end of the generated expressions.") | 388 | This gets tacked on the end of the generated expressions.") |
| 389 | 389 | ||