From: Nick Roberts Date: Mon, 5 May 2008 11:59:04 +0000 (+0000) Subject: (compilation-error-regexp-alist-alist): X-Git-Tag: emacs-pretest-23.0.90~5809 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9d8a1adde0c6b7e8c450da1ec36a7b4392c043b5;p=emacs.git (compilation-error-regexp-alist-alist): Add regexp for Open Watcom compiler output. --- diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 10ac627ed91..53007347aad 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -323,6 +323,9 @@ File = \\(.+\\), Line = \\([0-9]+\\)\\(?:, Column = \\([0-9]+\\)\\)?" (sun-ada "^\\([^, \n\t]+\\), line \\([0-9]+\\), char \\([0-9]+\\)[:., \(-]" 1 2 3) + (watcom + "\\(\\(?:[a-zA-Z]:\\)?[^:(\t\n]+\\)(\\([0-9]+\\)): \\(?:Error! E[0-9]+\\|Warning! W[0-9]+\\):" 1 2) + (4bsd "\\(?:^\\|:: \\|\\S ( \\)\\(/[^ \n\t()]+\\)(\\([0-9]+\\))\ \\(?:: \\(warning:\\)?\\|$\\| ),\\)" 1 2 nil (3))