aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1994-08-01 00:39:26 +0000
committerRichard M. Stallman <[email protected]>1994-08-01 00:39:26 +0000
commit05d9e5954d57bff0b8f659158bba77cd601bf28c (patch)
tree85e72fd59fd121a9a8adcf90bb8b15e548497ae0 /lisp
parent40ac73a0a8fcff108acf326e2b31ed9eac008064 (diff)
(compilation-error-regexp-alist): Fix previous change.
Add alternatives for GNU error messages with program name in them.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/progmodes/compile.el11
1 files changed, 10 insertions, 1 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index a272a07de7..0e206fea5c 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -115,7 +115,12 @@ or when it is used with \\[next-error] or \\[compile-goto-error].")
;; We'll insist that the number be followed by a colon or closing
;; paren, because otherwise this matches just about anything
;; containing a number with spaces around it.
- ("\n\\([^:( \t\n]+\\)[:(][ \t]*\\([0-9]+\\)\\([) \t]\\|:[^0-9\n]\\)" 2 3)
+ ("\n\\([^:( \t\n]+\\)[:(][ \t]*\\([0-9]+\\)\\([) \t]\\|:[^0-9\n]\\)" 1 2)
+
+ ;; GNU error message with a program name in it.
+ ;; compilername:file:linenum: error message
+ ("\n\\([^:( \t\n]+\\):\\([^:( \t\n]+\\):[ \t]*\\([0-9]+\\)\\(:[^0-9\n]\\)"
+ 2 3)
;; Borland C++:
;; Error ping.c 15: Unable to open include file 'sys/types.h'
@@ -177,6 +182,10 @@ of[ \t]+\"?\\([^\":\n]+\\)\"?:" 3 2)
;; GNAT compiler v1.82
;; foo.adb:2:1: Unit name does not match file name
("\n\\([^ \n\t:]+\\):\\([0-9]+\\):\\([0-9]+\\)[: \t]" 1 2 3)
+
+ ;; GNU message with program name and column number.
+ ("\n\\([^ \n\t:]+\\):\\([^ \n\t:]+\\):\
+\\([0-9]+\\):\\([0-9]+\\)[: \t]" 2 3 4)
)
"Alist that specifies how to match errors in compiler output.
Each element has the form (REGEXP FILE-IDX LINE-IDX [COLUMN-IDX]).