diff options
author | Roland McGrath <roland@gnu.org> | 1995-05-30 19:35:59 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-05-30 19:35:59 +0000 |
commit | 7d841ecf82dbfae0ac4da4d9fb1edac13e58fab1 (patch) | |
tree | 849943b007e07c71000f55d9931139e3b5b217e3 /lisp/progmodes | |
parent | 22d4cf7b1c3574b80de8ea71dcd5fc4591054e47 (diff) | |
download | emacs-7d841ecf82dbfae0ac4da4d9fb1edac13e58fab1.tar.gz |
(compilation-error-regexp-alist): In "Cray C" regexp, don't allow newlines.
Diffstat (limited to 'lisp/progmodes')
-rw-r--r-- | lisp/progmodes/compile.el | 2 |
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) \\([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. |