aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1997-10-27 03:53:24 +0000
committerKarl Heuer1997-10-27 03:53:24 +0000
commitc7c5bbc0b88cd3dd56ae3ebe0beee5ab33e277eb (patch)
tree2529b33166a7e336fa9c65812ae7bed28523cb70
parent30e0071c9e56b28874b932bfa792a2461ad43810 (diff)
downloademacs-c7c5bbc0b88cd3dd56ae3ebe0beee5ab33e277eb.tar.gz
emacs-c7c5bbc0b88cd3dd56ae3ebe0beee5ab33e277eb.zip
(compilation-error-regexp-alist):
New element for Sun F90.
-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 ba4b9b6778c..0541257b0a6 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -286,6 +286,11 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2)
286 ;; EPC F90 compiler: 286 ;; EPC F90 compiler:
287 ;; Error 24 at (2:progran.f90) : syntax error 287 ;; Error 24 at (2:progran.f90) : syntax error
288 ("Error [0-9]+ at (\\([0-9]*\\):\\([^)\n]+\\))" 2 1) 288 ("Error [0-9]+ at (\\([0-9]*\\):\\([^)\n]+\\))" 2 1)
289
290 ;; Sun F90 error messages:
291 ;; cf90-113 f90comp: ERROR NSE, File = Hoved.f90, Line = 16, Column = 3
292 (".* ERROR [a-zA-Z0-9 ]+, File = \\(.+\\), Line = \\([0-9]+\\), Column = \\([0-9]+\\)"
293 1 2 3)
289 ) 294 )
290 "Alist that specifies how to match errors in compiler output. 295 "Alist that specifies how to match errors in compiler output.
291Each elt has the form (REGEXP FILE-IDX LINE-IDX [COLUMN-IDX FILE-FORMAT...]) 296Each elt has the form (REGEXP FILE-IDX LINE-IDX [COLUMN-IDX FILE-FORMAT...])