From: Richard M. Stallman Date: Tue, 28 Jan 1997 05:04:25 +0000 (+0000) Subject: (compilation-error-regexp-alist): Undo 1/21 change. X-Git-Tag: emacs-20.1~2998 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e82654b771771b5c1d09fa9954ff9054f41f249d;p=emacs.git (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. --- 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) ("[EW], \\([^(\n]*\\)(\\([0-9]+\\),[ \t]*\\([0-9]+\\)" 1 2 3) ;; GNU messages with program name and optional column number. - ("[a-zA-Z]?:?[^0-9 \n\t:]+:[ \t]*\\([^ \n\t:]+\\):\ + ("[a-zA-Z]?:?[^0-9 \n\t:]+[^ \n\t:]*:[ \t]*\\([^ \n\t:]+\\):\ \\([0-9]+\\):\\(\\([0-9]+\\)[: \t]\\)?" 1 2 4) - ;; GNU messages with program name and optional column number - ;; and a severity letter after that. nsgmls makes them. - ("[^0-9 \n\t:]+:[ \t]*\\([^ \n\t:]+\\):\ -\\([0-9]+\\):\\(\\([0-9]+\\):\\)?[A-Za-z]:" 1 2 4) - ;; Cray C compiler error messages ("\\(cc\\| cft\\)-[0-9]+ c\\(c\\|f77\\): ERROR \\([^,\n]+, \\)* File = \\([^,\n]+\\), Line = \\([0-9]+\\)" 4 5)