From: Chong Yidong Date: Wed, 17 Jun 2009 16:33:41 +0000 (+0000) Subject: * progmodes/compile.el (compilation-error-regexp-alist-alist): X-Git-Tag: emacs-pretest-23.0.95~25 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f7a2e63478995468320eea0a1e74547c75b02b81;p=emacs.git * progmodes/compile.el (compilation-error-regexp-alist-alist): Comment out 2007-07-25 change adding support for Maven error messages; this regexp is too slow on long lines (Bug#3441). --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3519690d562..02ccb072bf8 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2009-06-17 Chong Yidong + + * progmodes/compile.el (compilation-error-regexp-alist-alist): + Comment out 2007-07-25 change adding support for Maven error + messages; this regexp is too slow on long lines (Bug#3441). + 2009-06-17 Akinori MUSHA (tiny change) * progmodes/ruby-mode.el (ruby-parse-partial) diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 283a37acd8c..11428d2fe7a 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -277,9 +277,10 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2 nil (1)) (1 (compilation-error-properties 2 3 nil nil nil 0 nil) append))) - (maven - ;; Maven is a popular build tool for Java. Maven is Free Software. - "\\(.*?\\):\\[\\([0-9]+\\),\\([0-9]+\\)\\]" 1 2 3) + ;; This regexp is pathologically slow on long lines (Bug#3441). + ;; (maven + ;; ;; Maven is a popular build tool for Java. Maven is Free Software. + ;; "\\(.*?\\):\\[\\([0-9]+\\),\\([0-9]+\\)\\]" 1 2 3) ;; Should be lint-1, lint-2 (SysV lint) (mips-1