]> git.eshelyaron.com Git - emacs.git/commitdiff
* progmodes/compile.el (compilation-mode-font-lock-keywords):
authorChong Yidong <cyd@stupidchicken.com>
Mon, 17 Jul 2006 04:07:49 +0000 (04:07 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Mon, 17 Jul 2006 04:07:49 +0000 (04:07 +0000)
Don't highlight "Compiling file" messages as error.

lisp/ChangeLog
lisp/progmodes/compile.el

index 58ae4595c1952173ca1432eaeb1abebf6486baea..e7fbe2131abf8b51f62d4aaf2a43a1882d5de473 100644 (file)
@@ -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.
 
index 3c63d5f01b1f8f744669e758dba8fa4e13037e4d..2e60594168a028414af3e2f6c4e8339528c35c77 100644 (file)
@@ -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)