summaryrefslogtreecommitdiff
path: root/lisp/progmodes
diff options
context:
space:
mode:
authorChong Yidong <cyd@stupidchicken.com>2006-07-17 04:07:49 +0000
committerChong Yidong <cyd@stupidchicken.com>2006-07-17 04:07:49 +0000
commitb5f02314a0bee4de719ee66111ed80ded2be0889 (patch)
tree41128eb5d872b23c969b1f55330bc24afa5645d1 /lisp/progmodes
parentc8068734a7e8201121bae138fa0a24bc8627e20f (diff)
downloademacs-b5f02314a0bee4de719ee66111ed80ded2be0889.tar.gz
* progmodes/compile.el (compilation-mode-font-lock-keywords):
Don't highlight "Compiling file" messages as error.
Diffstat (limited to 'lisp/progmodes')
-rw-r--r--lisp/progmodes/compile.el2
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)