diff options
| author | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-09-20 18:56:19 +0000 |
|---|---|---|
| committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-09-20 18:56:19 +0000 |
| commit | d40a86f9f66cc2330ef4049cdc32d184902fdf50 (patch) | |
| tree | 20e9d7a9936bfb3eb16d860b9885d907e134bf04 | |
| parent | edf29496b3fbde5bd209f94b700946e6be3af44b (diff) | |
| download | emacs-d40a86f9f66cc2330ef4049cdc32d184902fdf50.tar.gz | |
(compilation-error-regexp-alist-alist):
Recognize gcc's use of "note" for informational messages.
| -rw-r--r-- | lisp/ChangeLog | 12 | ||||
| -rw-r--r-- | lisp/progmodes/compile.el | 2 |
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 @@ +2007-09-20 Stefan Monnier <monnier@iro.umontreal.ca> + + * wid-edit.el (widget-image-insert): Don't merge mouse-face with + neighbouring buttons. + + * progmodes/compile.el (compilation-error-regexp-alist-alist): + Recognize gcc's use of "note" for informational messages. + 2007-09-20 Glenn Morris <rgm@gnu.org> * textmodes/tex-mode.el (tex-validate-buffer): Use paragraph @@ -7,8 +15,8 @@ 2007-09-19 Glenn Morris <rgm@gnu.org> - * textmodes/tex-mode.el (tex-terminate-paragraph): Use - backward-paragraph. + * textmodes/tex-mode.el (tex-terminate-paragraph): + Use backward-paragraph. 2007-09-18 Stefan Monnier <monnier@iro.umontreal.ca> 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)) \\([0-9]+\\)\\(?:\\([.:]\\)\\([0-9]+\\)\\)?\ \\(?:-\\([0-9]+\\)?\\(?:\\3\\([0-9]+\\)\\)?\\)?:\ \\(?: *\\(\\(?:Future\\|Runtime\\)?[Ww]arning\\|W:\\)\\|\ - *\\([Ii]nfo\\(?:\\>\\|rmationa?l?\\)\\|I:\\|instantiated from\\)\\|\ + *\\([Ii]nfo\\(?:\\>\\|rmationa?l?\\)\\|I:\\|instantiated from\\|[Nn]ote\\)\\|\ \[0-9]?\\(?:[^0-9\n]\\|$\\)\\|[0-9][0-9][0-9]\\)" 1 (2 . 5) (4 . 6) (7 . 8)) |
