aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland McGrath1993-12-09 01:12:13 +0000
committerRoland McGrath1993-12-09 01:12:13 +0000
commita0c567b516fa844254356fc2d96fc3d93fefc2af (patch)
tree829862d5f9b0087f45c9aaa0c5100229b6d88146
parente3271ae5f648e799be8b88351d29d78505c923ad (diff)
downloademacs-a0c567b516fa844254356fc2d96fc3d93fefc2af.tar.gz
emacs-a0c567b516fa844254356fc2d96fc3d93fefc2af.zip
(compilation-error-regexp-alist): Generalize `"foo.c", line 13:' regexp to
also match `"foo.c", line 13 pos 1...".
-rw-r--r--lisp/progmodes/compile.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index b4fbc4c29a5..0ef6f17fdfc 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -139,7 +139,9 @@ of[ \t]+\"?\\([^\"\n]+\\)\"?:" 3 2)
139 ;; "vvouch.c", line 19.5: 1506-046 (S) Syntax error. 139 ;; "vvouch.c", line 19.5: 1506-046 (S) Syntax error.
140 ;; Unknown compiler: 140 ;; Unknown compiler:
141 ;; File "foobar.ml", lines 5-8, characters 20-155: blah blah 141 ;; File "foobar.ml", lines 5-8, characters 20-155: blah blah
142 ("\"\\([^,\" \n\t]+\\)\", lines? \\([0-9]+\\)[:.,-]" 1 2) 142 ;; Microtec mcc68k:
143 ;; "foo.c", line 32 pos 1; (E) syntax error; unexpected symbol: "lossage"
144 ("\"\\([^,\" \n\t]+\\)\", lines? \\([0-9]+\\)[:., -]" 1 2)
143 145
144 ;; MIPS RISC CC - the one distributed with Ultrix: 146 ;; MIPS RISC CC - the one distributed with Ultrix:
145 ;; ccom: Error: foo.c, line 2: syntax error 147 ;; ccom: Error: foo.c, line 2: syntax error