diff options
author | Roland McGrath <roland@gnu.org> | 1995-08-04 18:02:02 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-08-04 18:02:02 +0000 |
commit | dc1df666f20fb5f027618e3dd59687e75189c67f (patch) | |
tree | 66baf84c8fbed21ca33fc2fb1295465d79f369d3 /lisp | |
parent | 810140c110df5e5fcaa06ddad7c7d8cd4ff9f6e3 (diff) | |
download | emacs-dc1df666f20fb5f027618e3dd59687e75189c67f.tar.gz |
(compilation-error-regexp-alist): Add regexp for Sun ada.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/progmodes/compile.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 4a0890af682..29de92e8cc1 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -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...]) |