aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2007-09-20 18:56:19 +0000
committerStefan Monnier2007-09-20 18:56:19 +0000
commitd40a86f9f66cc2330ef4049cdc32d184902fdf50 (patch)
tree20e9d7a9936bfb3eb16d860b9885d907e134bf04
parentedf29496b3fbde5bd209f94b700946e6be3af44b (diff)
downloademacs-d40a86f9f66cc2330ef4049cdc32d184902fdf50.tar.gz
emacs-d40a86f9f66cc2330ef4049cdc32d184902fdf50.zip
(compilation-error-regexp-alist-alist):
Recognize gcc's use of "note" for informational messages.
-rw-r--r--lisp/ChangeLog12
-rw-r--r--lisp/progmodes/compile.el2
2 files changed, 11 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 42e1451455b..19f28e89f1a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,11 @@
12007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * wid-edit.el (widget-image-insert): Don't merge mouse-face with
4 neighbouring buttons.
5
6 * progmodes/compile.el (compilation-error-regexp-alist-alist):
7 Recognize gcc's use of "note" for informational messages.
8
12007-09-20 Glenn Morris <rgm@gnu.org> 92007-09-20 Glenn Morris <rgm@gnu.org>
2 10
3 * textmodes/tex-mode.el (tex-validate-buffer): Use paragraph 11 * textmodes/tex-mode.el (tex-validate-buffer): Use paragraph
@@ -7,8 +15,8 @@
7 15
82007-09-19 Glenn Morris <rgm@gnu.org> 162007-09-19 Glenn Morris <rgm@gnu.org>
9 17
10 * textmodes/tex-mode.el (tex-terminate-paragraph): Use 18 * textmodes/tex-mode.el (tex-terminate-paragraph):
11 backward-paragraph. 19 Use backward-paragraph.
12 20
132007-09-18 Stefan Monnier <monnier@iro.umontreal.ca> 212007-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
14 22
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index 56385ca378d..a978415d59e 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -233,7 +233,7 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2 nil (1))
233\\([0-9]+\\)\\(?:\\([.:]\\)\\([0-9]+\\)\\)?\ 233\\([0-9]+\\)\\(?:\\([.:]\\)\\([0-9]+\\)\\)?\
234\\(?:-\\([0-9]+\\)?\\(?:\\3\\([0-9]+\\)\\)?\\)?:\ 234\\(?:-\\([0-9]+\\)?\\(?:\\3\\([0-9]+\\)\\)?\\)?:\
235\\(?: *\\(\\(?:Future\\|Runtime\\)?[Ww]arning\\|W:\\)\\|\ 235\\(?: *\\(\\(?:Future\\|Runtime\\)?[Ww]arning\\|W:\\)\\|\
236 *\\([Ii]nfo\\(?:\\>\\|rmationa?l?\\)\\|I:\\|instantiated from\\)\\|\ 236 *\\([Ii]nfo\\(?:\\>\\|rmationa?l?\\)\\|I:\\|instantiated from\\|[Nn]ote\\)\\|\
237\[0-9]?\\(?:[^0-9\n]\\|$\\)\\|[0-9][0-9][0-9]\\)" 237\[0-9]?\\(?:[^0-9\n]\\|$\\)\\|[0-9][0-9][0-9]\\)"
238 1 (2 . 5) (4 . 6) (7 . 8)) 238 1 (2 . 5) (4 . 6) (7 . 8))
239 239