summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Roberts <nickrob@snap.net.nz>2008-05-05 11:59:04 +0000
committerNick Roberts <nickrob@snap.net.nz>2008-05-05 11:59:04 +0000
commitcc17ae01f761df59192e044b253f31756d989fb6 (patch)
treea5b48ef612f1969550f2d52b34ab1af593f096c5
parenta63bff23f0cfa7649a865dd00cd2641a45e732ef (diff)
downloademacs-cc17ae01f761df59192e044b253f31756d989fb6.tar.gz
(compilation-error-regexp-alist-alist):
Add regexp for Open Watcom compiler output.
-rw-r--r--lisp/progmodes/compile.el3
1 files changed, 3 insertions, 0 deletions
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))