changeset 71929:51b683252178

* progmodes/compile.el (compilation-mode-font-lock-keywords): Don't highlight "Compiling file" messages as error.
author Chong Yidong <cyd@stupidchicken.com>
date Mon, 17 Jul 2006 04:07:49 +0000
parents 87bfa39ee279
children e631e867af4a
files lisp/ChangeLog lisp/progmodes/compile.el
diffstat 2 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Mon Jul 17 04:00:54 2006 +0000
+++ b/lisp/ChangeLog	Mon Jul 17 04:07:49 2006 +0000
@@ -1,5 +1,8 @@
 2006-07-17  Chong Yidong  <cyd@stupidchicken.com>
 
+	* progmodes/compile.el (compilation-mode-font-lock-keywords):
+	Don't highlight "Compiling file" messages as error.
+
 	* dired-aux.el (dired-compress-file): Confirm again if gzipped
 	file already exists.
 
--- a/lisp/progmodes/compile.el	Mon Jul 17 04:00:54 2006 +0000
+++ b/lisp/progmodes/compile.el	Mon Jul 17 04:07:49 2006 +0000
@@ -408,6 +408,8 @@
    '(;; 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)