# HG changeset patch # User Chong Yidong # Date 1153109269 0 # Node ID 51b68325217880c9fdf9b3b3774a28076932292e # Parent 87bfa39ee2791c598fea02d27bfcb523a8a4dbcb * progmodes/compile.el (compilation-mode-font-lock-keywords): Don't highlight "Compiling file" messages as error. diff -r 87bfa39ee279 -r 51b683252178 lisp/ChangeLog --- 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 + * 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 -r 87bfa39ee279 -r 51b683252178 lisp/progmodes/compile.el --- 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)