From: Roland McGrath Date: Tue, 30 May 1995 19:35:59 +0000 (+0000) Subject: (compilation-error-regexp-alist): In "Cray C" regexp, don't allow newlines. X-Git-Tag: emacs-19.34~3837 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=19ae9cb06fcd39812e34fc55485e056d5936d82e;p=emacs.git (compilation-error-regexp-alist): In "Cray C" regexp, don't allow newlines. --- diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 2395264e8e1..03e6456c4e3 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -182,7 +182,7 @@ of[ \t]+\"?\\([^\":\n]+\\)\"?:" 3 2) \\([0-9]+\\):\\(\\([0-9]+\\)[: \t]\\)?" 1 2 4) ;; Cray C compiler error messages - ("\n\\(cc\\| cft\\)-[0-9]+ c\\(c\\|f77\\): ERROR \\([^,]+, \\)* File = \\([^,]+\\), Line = \\([0-9]+\\)" 4 5) + ("\n\\(cc\\| cft\\)-[0-9]+ c\\(c\\|f77\\): ERROR \\([^,\n]+, \\)* File = \\([^,\n]+\\), Line = \\([0-9]+\\)" 4 5) ;; IBM C/C++ Tools 2.01: ;; foo.c(2:0) : informational EDC0804: Function foo is not referenced.