diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2006-09-15 15:37:58 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2006-09-15 15:37:58 +0000 |
commit | d25593b77e1dfd3d18e3201d9e2bc587bcdec511 (patch) | |
tree | 95198a4bd1fafa9a10964aa1eb6c1905f8ad3601 /lisp | |
parent | 004d27a66817f2d85c9ec27f15e54d9bd34ea21b (diff) | |
download | emacs-d25593b77e1dfd3d18e3201d9e2bc587bcdec511.tar.gz emacs-d25593b77e1dfd3d18e3201d9e2bc587bcdec511.tar.bz2 emacs-d25593b77e1dfd3d18e3201d9e2bc587bcdec511.zip |
* progmodes/compile.el (compilation-error-regexp-alist-alist):
Disallow filenames containing " -" to avoid confusion with libtool
compilation messages.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 6 | ||||
-rw-r--r-- | lisp/progmodes/compile.el | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e1d51646046..e64d501c5b8 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2006-09-15 Chong Yidong <cyd@stupidchicken.com> + + * progmodes/compile.el (compilation-error-regexp-alist-alist): + Disallow filenames containing " -" to avoid confusion with libtool + compilation messages. Suggested by Stefan Monnier. + 2006-09-15 David Kastrup <dak@gnu.org> * mouse-sel.el (mouse-sel-follow-link-p): Use event position diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index f4dd0fb5597..e6a6a8ed9c5 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -229,7 +229,7 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2 nil (1)) ;; the last line tries to rule out message where the info after the ;; line number starts with "SS". --Stef "^\\(?:[[:alpha:]][-[:alnum:].]+: ?\\)?\ -\\([0-9]*[^0-9\n].*?\\): ?\ +\\([0-9]*[^0-9\n]\\(?:[^\n ]\\| [^-\n]\\)*?\\): ?\ \\([0-9]+\\)\\(?:\\([.:]\\)\\([0-9]+\\)\\)?\ \\(?:-\\([0-9]+\\)?\\(?:\\3\\([0-9]+\\)\\)?\\)?:\ \\(?: *\\(\\(?:Future\\|Runtime\\)?[Ww]arning\\|W:\\)\\|\ |