]> git.eshelyaron.com Git - emacs.git/commitdiff
(compilation-error-regexp-alist): In "Cray C" regexp, don't allow newlines.
authorRoland McGrath <roland@gnu.org>
Tue, 30 May 1995 19:35:59 +0000 (19:35 +0000)
committerRoland McGrath <roland@gnu.org>
Tue, 30 May 1995 19:35:59 +0000 (19:35 +0000)
lisp/progmodes/compile.el

index 2395264e8e18a60ebb5e27030b17951b28bfde00..03e6456c4e39cd40480b1eca7ffdc05c392ba04b 100644 (file)
@@ -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.