# HG changeset patch # User Chong Yidong # Date 1245256421 0 # Node ID 6d3359edbf15343d0b2204bf811d31e942f15199 # Parent 3c0923fbcb01e989f678864dbec7a44415a115c1 * 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 -r 3c0923fbcb01 -r 6d3359edbf15 lisp/ChangeLog --- a/lisp/ChangeLog Wed Jun 17 15:16:17 2009 +0000 +++ b/lisp/ChangeLog Wed Jun 17 16:33:41 2009 +0000 @@ -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 -r 3c0923fbcb01 -r 6d3359edbf15 lisp/progmodes/compile.el --- a/lisp/progmodes/compile.el Wed Jun 17 15:16:17 2009 +0000 +++ b/lisp/progmodes/compile.el Wed Jun 17 16:33:41 2009 +0000 @@ -277,9 +277,10 @@ (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