diff options
| author | Roland McGrath | 1993-04-05 21:13:43 +0000 |
|---|---|---|
| committer | Roland McGrath | 1993-04-05 21:13:43 +0000 |
| commit | 7e8d26251291a4c8bee96f721303c745fa8d04d3 (patch) | |
| tree | 0f18b087bdb4d21a261dfbc392eaedc837146b77 | |
| parent | 8cf0453fbbcd00d06a55bc7309aa2fe03595242f (diff) | |
| download | emacs-7e8d26251291a4c8bee96f721303c745fa8d04d3.tar.gz emacs-7e8d26251291a4c8bee96f721303c745fa8d04d3.zip | |
(compilation-error-regexp-alist): Changed MIPS RISC CC regexp (last one) to
be anchored at bol, and to never match multiple lines.
| -rw-r--r-- | lisp/progmodes/compile.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index bf3d917f821..2136b6b939b 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; compile.el --- run compiler as inferior of Emacs, parse error messages. | 1 | ;;; compile.el --- run compiler as inferior of Emacs, parse error messages. |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1985, 86, 87, 92 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1985, 86, 87, 93 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Roland McGrath <roland@prep.ai.mit.edu> | 5 | ;; Author: Roland McGrath <roland@prep.ai.mit.edu> |
| 6 | ;; Maintainer: FSF | 6 | ;; Maintainer: FSF |
| @@ -130,7 +130,7 @@ or when it is used with \\[next-error] or \\[compile-goto-error].") | |||
| 130 | ;; prefixes entire sections rather than being on each line. | 130 | ;; prefixes entire sections rather than being on each line. |
| 131 | 131 | ||
| 132 | ;; MIPS RISC CC - the one distributed with Ultrix. | 132 | ;; MIPS RISC CC - the one distributed with Ultrix. |
| 133 | (": \\([^,]+\\), line \\([0-9]+\\):" 1 2) | 133 | ("^[^,\n]+: \\([^,\n]+\\), line \\([0-9]+\\):" 1 2) |
| 134 | ) | 134 | ) |
| 135 | "Alist that specifies how to match errors in compiler output. | 135 | "Alist that specifies how to match errors in compiler output. |
| 136 | Each element has the form (REGEXP FILE-IDX LINE-IDX). | 136 | Each element has the form (REGEXP FILE-IDX LINE-IDX). |