changeset 20187:0ee26e03e911

(compilation-error-regexp-alist): New element for Sun F90.
author Karl Heuer <kwzh@gnu.org>
date Mon, 27 Oct 1997 03:53:24 +0000
parents 6c9879dee580
children d4ad4463384d
files lisp/progmodes/compile.el
diffstat 1 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/progmodes/compile.el	Mon Oct 27 03:50:50 1997 +0000
+++ b/lisp/progmodes/compile.el	Mon Oct 27 03:53:24 1997 +0000
@@ -286,6 +286,11 @@
     ;; 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...])