aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland McGrath1996-01-06 21:09:40 +0000
committerRoland McGrath1996-01-06 21:09:40 +0000
commitb1707ae4658aa4fea99bbc616a0bdd4728f7748d (patch)
treeff1accbde8ed8a4bc7bf417c5068ce9b23d55364
parent21f47958e447aa3bd01dbc795d0d19c73c6cc9af (diff)
downloademacs-b1707ae4658aa4fea99bbc616a0bdd4728f7748d.tar.gz
emacs-b1707ae4658aa4fea99bbc616a0bdd4728f7748d.zip
(compilation-error-regexp-alist): Broaden GNAT regexp to match column numbers.
-rw-r--r--lisp/progmodes/compile.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index dd632e8971e..28f2f6da714 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -159,7 +159,10 @@ of[ \t]+\"?\\([^\":\n]+\\)\"?:" 3 2)
159 ;; "foo.c", line 32 pos 1; (E) syntax error; unexpected symbol: "lossage" 159 ;; "foo.c", line 32 pos 1; (E) syntax error; unexpected symbol: "lossage"
160 ;; GNAT (as of July 94): 160 ;; GNAT (as of July 94):
161 ;; "foo.adb", line 2(11): warning: file name does not match ... 161 ;; "foo.adb", line 2(11): warning: file name does not match ...
162 ("\"\\([^,\" \n\t]+\\)\", lines? \\([0-9]+\\)[:., (-]" 1 2) 162 ;; IBM AIX xlc compiler:
163 ;; "src/swapping.c", line 30.34: 1506-342 (W) "/*" detected in comment.
164 ("\"\\([^,\" \n\t]+\\)\", lines? \
165\\([0-9]+\\)\\([\(.]\\([0-9]+\\)\)?\\)?[:., (-]" 1 2 4)
163 166
164 ;; MIPS RISC CC - the one distributed with Ultrix: 167 ;; MIPS RISC CC - the one distributed with Ultrix:
165 ;; ccom: Error: foo.c, line 2: syntax error 168 ;; ccom: Error: foo.c, line 2: syntax error
@@ -172,9 +175,6 @@ of[ \t]+\"?\\([^\":\n]+\\)\"?:" 3 2)
172 ("in line \\([0-9]+\\) of file \\([^ \n]+[^. \n]\\)\\.? " 2 1) 175 ("in line \\([0-9]+\\) of file \\([^ \n]+[^. \n]\\)\\.? " 2 1)
173 ;; IBM AIX lint is too painful to do right this way. File name 176 ;; IBM AIX lint is too painful to do right this way. File name
174 ;; prefixes entire sections rather than being on each line. 177 ;; prefixes entire sections rather than being on each line.
175 ;; IBM AIX xlc compiler:
176 ;; "src/swapping.c", line 30.34: 1506-342 (W) "/*" detected in comment.
177 ("\"\\([^\"]+\\)\", lines? \\([0-9]+\\)\\(\\.\\([0-9]+\\)\\)" 1 2 4)
178 178
179 ;; Lucid Compiler, lcc 3.x 179 ;; Lucid Compiler, lcc 3.x
180 ;; E, file.cc(35,52) Illegal operation on pointers 180 ;; E, file.cc(35,52) Illegal operation on pointers