changeset 2460:7dad88221a45

(compilation-error-regexp-alist): Changed MIPS RISC CC regexp (last one) to be anchored at bol, and to never match multiple lines.
author Roland McGrath <roland@gnu.org>
date Mon, 05 Apr 1993 21:13:43 +0000
parents fd35248ff0d1
children 1ecb75748794
files lisp/progmodes/compile.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/progmodes/compile.el	Mon Apr 05 21:00:51 1993 +0000
+++ b/lisp/progmodes/compile.el	Mon Apr 05 21:13:43 1993 +0000
@@ -1,6 +1,6 @@
 ;;; compile.el --- run compiler as inferior of Emacs, parse error messages.
 
-;; Copyright (C) 1985, 86, 87, 92 Free Software Foundation, Inc.
+;; Copyright (C) 1985, 86, 87, 93 Free Software Foundation, Inc.
 
 ;; Author: Roland McGrath <roland@prep.ai.mit.edu>
 ;; Maintainer: FSF
@@ -130,7 +130,7 @@
     ;; prefixes entire sections rather than being on each line.
 
     ;; MIPS RISC CC - the one distributed with Ultrix.
-    (": \\([^,]+\\), line \\([0-9]+\\):" 1 2)
+    ("^[^,\n]+: \\([^,\n]+\\), line \\([0-9]+\\):" 1 2)
     )
   "Alist that specifies how to match errors in compiler output.
 Each element has the form (REGEXP FILE-IDX LINE-IDX).