diff options
author | Roland McGrath <roland@gnu.org> | 1996-01-06 21:03:47 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-01-06 21:03:47 +0000 |
commit | aca2a6b07c38a8aaa8995ebc58cb49c1af592532 (patch) | |
tree | 1c7bef9d0e65d0c7f8c3e5f2e5c726493edd7a6f /lisp/progmodes | |
parent | ac0b583941e545535c23fac1f5f464d1f13a4459 (diff) | |
download | emacs-aca2a6b07c38a8aaa8995ebc58cb49c1af592532.tar.gz |
(compilation-error-regexp-alist): Add regexp for IBM AIX xlc compiler.
Diffstat (limited to 'lisp/progmodes')
-rw-r--r-- | lisp/progmodes/compile.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 464fcc90d3a..dd632e8971e 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -172,6 +172,9 @@ of[ \t]+\"?\\([^\":\n]+\\)\"?:" 3 2) ("in line \\([0-9]+\\) of file \\([^ \n]+[^. \n]\\)\\.? " 2 1) ;; IBM AIX lint is too painful to do right this way. File name ;; prefixes entire sections rather than being on each line. + ;; IBM AIX xlc compiler: + ;; "src/swapping.c", line 30.34: 1506-342 (W) "/*" detected in comment. + ("\"\\([^\"]+\\)\", lines? \\([0-9]+\\)\\(\\.\\([0-9]+\\)\\)" 1 2 4) ;; Lucid Compiler, lcc 3.x ;; E, file.cc(35,52) Illegal operation on pointers |