aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1999-08-29 19:54:39 +0000
committerRichard M. Stallman1999-08-29 19:54:39 +0000
commite3c0f9ded6f68f9fded9904afaca2e7d6e5bc75a (patch)
tree7dac529677955f8ecc1892caba0f4ba3d476cb58
parent151a410a5c60ddc081616b4af53d912bd813d434 (diff)
downloademacs-e3c0f9ded6f68f9fded9904afaca2e7d6e5bc75a.tar.gz
emacs-e3c0f9ded6f68f9fded9904afaca2e7d6e5bc75a.zip
(compilation-error-regexp-alist): New item for SGI IRIX MipsPro compilers.
-rw-r--r--lisp/progmodes/compile.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index 117819c527e..7b35a30e08f 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -303,6 +303,11 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2)
303 ;; Error 24 at (2:progran.f90) : syntax error 303 ;; Error 24 at (2:progran.f90) : syntax error
304 ("Error [0-9]+ at (\\([0-9]*\\):\\([^)\n]+\\))" 2 1) 304 ("Error [0-9]+ at (\\([0-9]*\\):\\([^)\n]+\\))" 2 1)
305 305
306 ;; SGI IRIX MipsPro compilers:
307 ;; cc-1070 cc: ERROR File = linkl.c, Line = 38
308 (".*: ERROR File = \\(.+\\), Line = \\([0-9]+\\)" 1 2)
309 (".*: WARNING File = \\(.+\\), Line = \\([0-9]+\\)" 1 2)
310
306 ;; Sun F90 error messages: 311 ;; Sun F90 error messages:
307 ;; cf90-113 f90comp: ERROR NSE, File = Hoved.f90, Line = 16, Column = 3 312 ;; cf90-113 f90comp: ERROR NSE, File = Hoved.f90, Line = 16, Column = 3
308 (".* ERROR [a-zA-Z0-9 ]+, File = \\(.+\\), Line = \\([0-9]+\\), Column = \\([0-9]+\\)" 313 (".* ERROR [a-zA-Z0-9 ]+, File = \\(.+\\), Line = \\([0-9]+\\), Column = \\([0-9]+\\)"