From 0fdb20bb32ec3297c7af88734a2b669901094fef Mon Sep 17 00:00:00 2001 From: Sam Steingold Date: Wed, 4 Mar 2009 14:33:42 +0000 Subject: [PATCH] (compilation-error-regexp-alist-alist): Handle "omake -P" messages "file foo changed". --- lisp/ChangeLog | 5 +++++ lisp/progmodes/compile.el | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9ace609a8fc..f7492e2d93d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2009-03-04 Sam Steingold + + * progmodes/compile.el (compilation-error-regexp-alist-alist): + Handle "omake -P" messages "file foo changed". + 2009-03-04 Glenn Morris * 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)) "^\\([0-9]+>\\)?\\(\\(?:[a-zA-Z]:\\)?[^:(\t\n]+\\)(\\([0-9]+\\)) \ : \\(?:warnin\\(g\\)\\|[a-z ]+\\) C[0-9]+:" 2 3 nil (4)) + (omake + ;; "omake -P" reports "file foo changed" + ;; (useful if you do "cvs up" and want to see what has changed) + "omake: file \\(.*\\) changed" 1) + (oracle "^\\(?:Semantic error\\|Error\\|PCC-[0-9]+:\\).* line \\([0-9]+\\)\ \\(?:\\(?:,\\| at\\)? column \\([0-9]+\\)\\)?\ -- 2.39.2