diff options
| author | Chong Yidong | 2006-07-17 04:07:49 +0000 |
|---|---|---|
| committer | Chong Yidong | 2006-07-17 04:07:49 +0000 |
| commit | b5f02314a0bee4de719ee66111ed80ded2be0889 (patch) | |
| tree | 41128eb5d872b23c969b1f55330bc24afa5645d1 | |
| parent | c8068734a7e8201121bae138fa0a24bc8627e20f (diff) | |
| download | emacs-b5f02314a0bee4de719ee66111ed80ded2be0889.tar.gz emacs-b5f02314a0bee4de719ee66111ed80ded2be0889.zip | |
* progmodes/compile.el (compilation-mode-font-lock-keywords):
Don't highlight "Compiling file" messages as error.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/progmodes/compile.el | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 58ae4595c19..e7fbe2131ab 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2006-07-17 Chong Yidong <cyd@stupidchicken.com> | 1 | 2006-07-17 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 2 | ||
| 3 | * progmodes/compile.el (compilation-mode-font-lock-keywords): | ||
| 4 | Don't highlight "Compiling file" messages as error. | ||
| 5 | |||
| 3 | * dired-aux.el (dired-compress-file): Confirm again if gzipped | 6 | * dired-aux.el (dired-compress-file): Confirm again if gzipped |
| 4 | file already exists. | 7 | file already exists. |
| 5 | 8 | ||
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'.") | |||
| 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)) | 410 | (0 '(face nil message nil help-echo nil mouse-face nil) t)) |
| 411 | ("^Compiling file .*" | ||
| 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) |