changeset 94633:77be8c29913f

(compilation-error-regexp-alist-alist): Add regexp for Open Watcom compiler output.
author Nick Roberts <nickrob@snap.net.nz>
date Mon, 05 May 2008 11:59:04 +0000
parents 99413a673d50
children dfff53b237c4
files lisp/progmodes/compile.el
diffstat 1 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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))