From b5f02314a0bee4de719ee66111ed80ded2be0889 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Mon, 17 Jul 2006 04:07:49 +0000 Subject: [PATCH] * progmodes/compile.el (compilation-mode-font-lock-keywords): Don't highlight "Compiling file" messages as error. --- lisp/ChangeLog | 3 +++ lisp/progmodes/compile.el | 2 ++ 2 files changed, 5 insertions(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 58ae4595c19..e7fbe2131ab 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2006-07-17 Chong Yidong + * 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. 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) -- 2.39.2