1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-19 04:21:45 -07:00

(compilation-error-regexp-alist): Changed MIPS RISC CC regexp (last one) to

be anchored at bol, and to never match multiple lines.
This commit is contained in:
Roland McGrath 1993-04-05 21:13:43 +00:00
parent 8cf0453fbb
commit 7e8d262512

View file

@ -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 @@ or when it is used with \\[next-error] or \\[compile-goto-error].")
;; 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).