From: Andreas Schwab Date: Sat, 8 Jan 2011 13:32:31 +0000 (+0100) Subject: * lisp/progmodes/compile.el (compilation-error-regexp-alist-alist) X-Git-Tag: emacs-pretest-24.0.90~104^2~618^2~1322^2~264 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6c7ec17145ca8998bc74151bbe0d52e9b7f73a2f;p=emacs.git * lisp/progmodes/compile.el (compilation-error-regexp-alist-alist) [gnu]: Remove unused group. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index fce4875e965..c39ded8f5d9 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -3,6 +3,7 @@ * progmodes/compile.el (compilation-error-regexp-alist-alist) [gcc-include]: Tighten file name match, add match for column number. (Bug#7806) + [gnu]: Remove unused group. 2011-01-08 Glenn Morris diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index eabfe22b5ee..710b5d0858b 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -270,12 +270,12 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2 nil (1)) ;; The "in \\|from " exception was added to handle messages from Ruby. "^\\(?:[[:alpha:]][-[:alnum:].]+: ?\\|[ \t]+\\(?:in \\|from \\)\\)?\ \\([0-9]*[^0-9\n]\\(?:[^\n :]\\| [^-/\n]\\|:[^ \n]\\)*?\\): ?\ -\\([0-9]+\\)\\(?:\\([.:]\\)\\([0-9]+\\)\\)?\ +\\([0-9]+\\)\\(?:[.:]\\([0-9]+\\)\\)?\ \\(?:-\\([0-9]+\\)?\\(?:\\.\\([0-9]+\\)\\)?\\)?:\ \\(?: *\\(\\(?:Future\\|Runtime\\)?[Ww]arning\\|W:\\)\\|\ *\\([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)) + 1 (2 . 4) (3 . 5) (6 . 7)) (lcc "^\\(?:E\\|\\(W\\)\\), \\([^(\n]+\\)(\\([0-9]+\\),[ \t]*\\([0-9]+\\)"