aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/progmodes/compile.el4
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.
136Each element has the form (REGEXP FILE-IDX LINE-IDX). 136Each element has the form (REGEXP FILE-IDX LINE-IDX).