# HG changeset patch # User Chong Yidong # Date 1257697819 0 # Node ID d1351c2f9b089b122d40aa2135cf58a36c0cb9cb # Parent 7e842c6b6d18fc33839dd10b259f3c8ae94cb003 * compilation.txt: Add one more error message for msft (Bug#4100). diff -r 7e842c6b6d18 -r d1351c2f9b08 lisp/ChangeLog --- a/lisp/ChangeLog Sun Nov 08 15:42:32 2009 +0000 +++ b/lisp/ChangeLog Sun Nov 08 16:30:19 2009 +0000 @@ -1,3 +1,8 @@ +2009-11-08 Jared Finder + + * progmodes/compile.el (compilation-error-regexp-alist-alist): + Handle "see declaration of" MSFT statements (Bug#4100). + 2009-11-08 Michael Albinus * net/tramp.el (tramp-advice-make-auto-save-file-name) diff -r 7e842c6b6d18 -r d1351c2f9b08 lisp/progmodes/compile.el --- a/lisp/progmodes/compile.el Sun Nov 08 15:42:32 2009 +0000 +++ b/lisp/progmodes/compile.el Sun Nov 08 16:30:19 2009 +0000 @@ -297,9 +297,11 @@ " in \\([^()\n ]+\\)(\\([0-9]+\\))$" 1 2) (msft - ;; AFAWK, The message may be a "warning", "error", or "fatal error". - "^\\([0-9]+>\\)?\\(\\(?:[a-zA-Z]:\\)?[^:(\t\n]+\\)(\\([0-9]+\\)) \ -: \\(?:warnin\\(g\\)\\|[a-z ]+\\) C[0-9]+:" 2 3 nil (4)) + ;; The message may be a "warning", "error", or "fatal error" with + ;; an error code, or "see declaration of" without an error code. + "^ *\\([0-9]+>\\)?\\(\\(?:[a-zA-Z]:\\)?[^:(\t\n]+\\)(\\([0-9]+\\)) \ +: \\(?:see declaration\\|\\(?:warnin\\(g\\)\\|[a-z ]+\\) C[0-9]+:\\)" + 2 3 nil (4)) (omake ;; "omake -P" reports "file foo changed"