comparison lisp/progmodes/compile.el @ 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 aa53161fdb21
children adaad9cef326
comparison
equal deleted inserted replaced
71928:87bfa39ee279 71929:51b683252178
405 "Value of `page-delimiter' in Compilation mode.") 405 "Value of `page-delimiter' in Compilation mode.")
406 406
407 (defvar compilation-mode-font-lock-keywords 407 (defvar compilation-mode-font-lock-keywords
408 '(;; Don't highlight this as a compilation message. 408 '(;; Don't highlight this as a compilation message.
409 ("^Compilation started at.*" 409 ("^Compilation started at.*"
410 (0 '(face nil message nil help-echo nil mouse-face nil) t))
411 ("^Compiling file .*"
410 (0 '(face nil message nil help-echo nil mouse-face nil) t)) 412 (0 '(face nil message nil help-echo nil mouse-face nil) t))
411 ;; configure output lines. 413 ;; configure output lines.
412 ("^[Cc]hecking \\(?:[Ff]or \\|[Ii]f \\|[Ww]hether \\(?:to \\)?\\)?\\(.+\\)\\.\\.\\. *\\(?:(cached) *\\)?\\(\\(yes\\(?: .+\\)?\\)\\|no\\|\\(.*\\)\\)$" 414 ("^[Cc]hecking \\(?:[Ff]or \\|[Ii]f \\|[Ww]hether \\(?:to \\)?\\)?\\(.+\\)\\.\\.\\. *\\(?:(cached) *\\)?\\(\\(yes\\(?: .+\\)?\\)\\|no\\|\\(.*\\)\\)$"
413 (1 font-lock-variable-name-face) 415 (1 font-lock-variable-name-face)
414 (2 (compilation-face '(4 . 3)))) 416 (2 (compilation-face '(4 . 3))))