aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1997-01-28 05:04:25 +0000
committerRichard M. Stallman1997-01-28 05:04:25 +0000
commite82654b771771b5c1d09fa9954ff9054f41f249d (patch)
tree15618d8caa72f454eee6709488397d0afefa1b48
parentbc1c9d7e6b3c01a54a66617d550a6af6b6d4167d (diff)
downloademacs-e82654b771771b5c1d09fa9954ff9054f41f249d.tar.gz
emacs-e82654b771771b5c1d09fa9954ff9054f41f249d.zip
(compilation-error-regexp-alist): Undo 1/21 change.
In the GNU message with program name alternative, allow digits in the program name after the first character.
-rw-r--r--lisp/progmodes/compile.el7
1 files changed, 1 insertions, 6 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index baf42a93261..ae81921c0af 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -212,14 +212,9 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2)
212 ("[EW], \\([^(\n]*\\)(\\([0-9]+\\),[ \t]*\\([0-9]+\\)" 1 2 3) 212 ("[EW], \\([^(\n]*\\)(\\([0-9]+\\),[ \t]*\\([0-9]+\\)" 1 2 3)
213 213
214 ;; GNU messages with program name and optional column number. 214 ;; GNU messages with program name and optional column number.
215 ("[a-zA-Z]?:?[^0-9 \n\t:]+:[ \t]*\\([^ \n\t:]+\\):\ 215 ("[a-zA-Z]?:?[^0-9 \n\t:]+[^ \n\t:]*:[ \t]*\\([^ \n\t:]+\\):\
216\\([0-9]+\\):\\(\\([0-9]+\\)[: \t]\\)?" 1 2 4) 216\\([0-9]+\\):\\(\\([0-9]+\\)[: \t]\\)?" 1 2 4)
217 217
218 ;; GNU messages with program name and optional column number
219 ;; and a severity letter after that. nsgmls makes them.
220 ("[^0-9 \n\t:]+:[ \t]*\\([^ \n\t:]+\\):\
221\\([0-9]+\\):\\(\\([0-9]+\\):\\)?[A-Za-z]:" 1 2 4)
222
223 ;; Cray C compiler error messages 218 ;; Cray C compiler error messages
224 ("\\(cc\\| cft\\)-[0-9]+ c\\(c\\|f77\\): ERROR \\([^,\n]+, \\)* File = \\([^,\n]+\\), Line = \\([0-9]+\\)" 4 5) 219 ("\\(cc\\| cft\\)-[0-9]+ c\\(c\\|f77\\): ERROR \\([^,\n]+, \\)* File = \\([^,\n]+\\), Line = \\([0-9]+\\)" 4 5)
225 220