diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2006-07-17 04:07:49 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2006-07-17 04:07:49 +0000 |
commit | b5f02314a0bee4de719ee66111ed80ded2be0889 (patch) | |
tree | 41128eb5d872b23c969b1f55330bc24afa5645d1 /lisp/progmodes/compile.el | |
parent | c8068734a7e8201121bae138fa0a24bc8627e20f (diff) | |
download | emacs-b5f02314a0bee4de719ee66111ed80ded2be0889.tar.gz |
* progmodes/compile.el (compilation-mode-font-lock-keywords):
Don't highlight "Compiling file" messages as error.
Diffstat (limited to 'lisp/progmodes/compile.el')
-rw-r--r-- | lisp/progmodes/compile.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 3c63d5f01b1..2e60594168a 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -408,6 +408,8 @@ you may also want to change `compilation-page-delimiter'.") '(;; Don't highlight this as a compilation message. ("^Compilation started at.*" (0 '(face nil message nil help-echo nil mouse-face nil) t)) + ("^Compiling file .*" + (0 '(face nil message nil help-echo nil mouse-face nil) t)) ;; configure output lines. ("^[Cc]hecking \\(?:[Ff]or \\|[Ii]f \\|[Ww]hether \\(?:to \\)?\\)?\\(.+\\)\\.\\.\\. *\\(?:(cached) *\\)?\\(\\(yes\\(?: .+\\)?\\)\\|no\\|\\(.*\\)\\)$" (1 font-lock-variable-name-face) |