aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland McGrath1995-05-30 19:35:59 +0000
committerRoland McGrath1995-05-30 19:35:59 +0000
commit19ae9cb06fcd39812e34fc55485e056d5936d82e (patch)
treeef29055b92f0e1ff4b64adb932e1e1f04325bd58
parent8485d210e5a9d26ca19e0eccddfdad008134e071 (diff)
downloademacs-19ae9cb06fcd39812e34fc55485e056d5936d82e.tar.gz
emacs-19ae9cb06fcd39812e34fc55485e056d5936d82e.zip
(compilation-error-regexp-alist): In "Cray C" regexp, don't allow newlines.
-rw-r--r--lisp/progmodes/compile.el2
1 files changed, 1 insertions, 1 deletions
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)
182\\([0-9]+\\):\\(\\([0-9]+\\)[: \t]\\)?" 1 2 4) 182\\([0-9]+\\):\\(\\([0-9]+\\)[: \t]\\)?" 1 2 4)
183 183
184 ;; Cray C compiler error messages 184 ;; Cray C compiler error messages
185 ("\n\\(cc\\| cft\\)-[0-9]+ c\\(c\\|f77\\): ERROR \\([^,]+, \\)* File = \\([^,]+\\), Line = \\([0-9]+\\)" 4 5) 185 ("\n\\(cc\\| cft\\)-[0-9]+ c\\(c\\|f77\\): ERROR \\([^,\n]+, \\)* File = \\([^,\n]+\\), Line = \\([0-9]+\\)" 4 5)
186 186
187 ;; IBM C/C++ Tools 2.01: 187 ;; IBM C/C++ Tools 2.01:
188 ;; foo.c(2:0) : informational EDC0804: Function foo is not referenced. 188 ;; foo.c(2:0) : informational EDC0804: Function foo is not referenced.