]> git.eshelyaron.com Git - emacs.git/commitdiff
(compilation-error-regexp-alist):
authorKarl Heuer <kwzh@gnu.org>
Mon, 27 Oct 1997 03:53:24 +0000 (03:53 +0000)
committerKarl Heuer <kwzh@gnu.org>
Mon, 27 Oct 1997 03:53:24 +0000 (03:53 +0000)
New element for Sun F90.

lisp/progmodes/compile.el

index ba4b9b6778cb1c903dd2b078039013a09e8a3180..0541257b0a6cfebb7dd6b96e303477dc2bbd16f4 100644 (file)
@@ -286,6 +286,11 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2)
     ;; EPC F90 compiler:
     ;; Error 24 at (2:progran.f90) : syntax error
     ("Error [0-9]+ at (\\([0-9]*\\):\\([^)\n]+\\))" 2 1)
+
+    ;; Sun F90 error messages:
+    ;; cf90-113 f90comp: ERROR NSE, File = Hoved.f90, Line = 16, Column = 3 
+    (".* ERROR [a-zA-Z0-9 ]+, File = \\(.+\\), Line = \\([0-9]+\\), Column = \\([0-9]+\\)"
+     1 2 3)
     )
   "Alist that specifies how to match errors in compiler output.
 Each elt has the form (REGEXP FILE-IDX LINE-IDX [COLUMN-IDX FILE-FORMAT...])