diff options
| author | Sam Steingold | 2009-03-04 14:33:42 +0000 |
|---|---|---|
| committer | Sam Steingold | 2009-03-04 14:33:42 +0000 |
| commit | 0fdb20bb32ec3297c7af88734a2b669901094fef (patch) | |
| tree | 849e28d63bbb6272274e6df7881086f418b0e09c | |
| parent | 2c93b2488111dd1ec3a733c26bfbe929d3fc002b (diff) | |
| download | emacs-0fdb20bb32ec3297c7af88734a2b669901094fef.tar.gz emacs-0fdb20bb32ec3297c7af88734a2b669901094fef.zip | |
(compilation-error-regexp-alist-alist): Handle "omake -P" messages "file foo changed".
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/progmodes/compile.el | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9ace609a8fc..f7492e2d93d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2009-03-04 Sam Steingold <sds@gnu.org> | ||
| 2 | |||
| 3 | * progmodes/compile.el (compilation-error-regexp-alist-alist): | ||
| 4 | Handle "omake -P" messages "file foo changed". | ||
| 5 | |||
| 1 | 2009-03-04 Glenn Morris <rgm@gnu.org> | 6 | 2009-03-04 Glenn Morris <rgm@gnu.org> |
| 2 | 7 | ||
| 3 | * mail/rmailedit.el (rmail-edit-mode): Doc fix. | 8 | * mail/rmailedit.el (rmail-edit-mode): Doc fix. |
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index ee2e09132e7..2b3b954a412 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el | |||
| @@ -292,6 +292,11 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2 nil (1)) | |||
| 292 | "^\\([0-9]+>\\)?\\(\\(?:[a-zA-Z]:\\)?[^:(\t\n]+\\)(\\([0-9]+\\)) \ | 292 | "^\\([0-9]+>\\)?\\(\\(?:[a-zA-Z]:\\)?[^:(\t\n]+\\)(\\([0-9]+\\)) \ |
| 293 | : \\(?:warnin\\(g\\)\\|[a-z ]+\\) C[0-9]+:" 2 3 nil (4)) | 293 | : \\(?:warnin\\(g\\)\\|[a-z ]+\\) C[0-9]+:" 2 3 nil (4)) |
| 294 | 294 | ||
| 295 | (omake | ||
| 296 | ;; "omake -P" reports "file foo changed" | ||
| 297 | ;; (useful if you do "cvs up" and want to see what has changed) | ||
| 298 | "omake: file \\(.*\\) changed" 1) | ||
| 299 | |||
| 295 | (oracle | 300 | (oracle |
| 296 | "^\\(?:Semantic error\\|Error\\|PCC-[0-9]+:\\).* line \\([0-9]+\\)\ | 301 | "^\\(?:Semantic error\\|Error\\|PCC-[0-9]+:\\).* line \\([0-9]+\\)\ |
| 297 | \\(?:\\(?:,\\| at\\)? column \\([0-9]+\\)\\)?\ | 302 | \\(?:\\(?:,\\| at\\)? column \\([0-9]+\\)\\)?\ |