]> git.eshelyaron.com Git - emacs.git/commitdiff
(compilation-error-regexp-alist): Add regexp for Sun ada.
authorRoland McGrath <roland@gnu.org>
Fri, 4 Aug 1995 18:02:02 +0000 (18:02 +0000)
committerRoland McGrath <roland@gnu.org>
Fri, 4 Aug 1995 18:02:02 +0000 (18:02 +0000)
lisp/progmodes/compile.el

index 4a0890af682ab2a93ebdf5f2272159761791d902..29de92e8cc11e626e402afc4140fed05cd20e8fd 100644 (file)
@@ -189,6 +189,10 @@ of[ \t]+\"?\\([^\":\n]+\\)\"?:" 3 2)
     ;;  foo.c(3:8) : warning EDC0833: Implicit return statement encountered.
     ;;  foo.c(5:5) : error EDC0350: Syntax error.
     ("\n\\([^( \n\t]+\\)(\\([0-9]+\\):\\([0-9]+\\)) : " 1 2 3)
+
+    ;; Sun ada (VADS, Solaris):
+    ;;  /home3/xdhar/rcds_rc/main.a, line 361, char 6:syntax error: "," inserted
+    ("\n\\([^, ]+\\), line \\([0-9]+\\), char \\([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...])