comparison lisp/progmodes/compile.el @ 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 c31e26fe0b1f
children 11f8893e574f
comparison
equal deleted inserted replaced
94632:99413a673d50 94633:77be8c29913f
320 File = \\(.+\\), Line = \\([0-9]+\\)\\(?:, Column = \\([0-9]+\\)\\)?" 320 File = \\(.+\\), Line = \\([0-9]+\\)\\(?:, Column = \\([0-9]+\\)\\)?"
321 3 4 5 (1 . 2)) 321 3 4 5 (1 . 2))
322 322
323 (sun-ada 323 (sun-ada
324 "^\\([^, \n\t]+\\), line \\([0-9]+\\), char \\([0-9]+\\)[:., \(-]" 1 2 3) 324 "^\\([^, \n\t]+\\), line \\([0-9]+\\), char \\([0-9]+\\)[:., \(-]" 1 2 3)
325
326 (watcom
327 "\\(\\(?:[a-zA-Z]:\\)?[^:(\t\n]+\\)(\\([0-9]+\\)): \\(?:Error! E[0-9]+\\|Warning! W[0-9]+\\):" 1 2)
325 328
326 (4bsd 329 (4bsd
327 "\\(?:^\\|:: \\|\\S ( \\)\\(/[^ \n\t()]+\\)(\\([0-9]+\\))\ 330 "\\(?:^\\|:: \\|\\S ( \\)\\(/[^ \n\t()]+\\)(\\([0-9]+\\))\
328 \\(?:: \\(warning:\\)?\\|$\\| ),\\)" 1 2 nil (3)) 331 \\(?:: \\(warning:\\)?\\|$\\| ),\\)" 1 2 nil (3))
329 332