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:
parent
8cf0453fbb
commit
7e8d262512
1 changed files with 2 additions and 2 deletions
|
|
@ -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).
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue