# HG changeset patch # User Nick Roberts # Date 1209988744 0 # Node ID 77be8c29913f7a8fbc71b67eb713c6b73829cce3 # Parent 99413a673d500b2624e1c4bf3919bec2815f4fd9 (compilation-error-regexp-alist-alist): Add regexp for Open Watcom compiler output. diff -r 99413a673d50 -r 77be8c29913f lisp/progmodes/compile.el --- a/lisp/progmodes/compile.el Mon May 05 11:55:44 2008 +0000 +++ b/lisp/progmodes/compile.el Mon May 05 11:59:04 2008 +0000 @@ -323,6 +323,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))