From f5242a022f62b577e97faa2dc062936b107fe8b7 Mon Sep 17 00:00:00 2001 From: Lars Magne Ingebrigtsen Date: Tue, 12 Jul 2011 14:28:35 +0200 Subject: [PATCH] Fontise bytecomp Error lines more correctly MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Fix suggested by Johan Bockgård. Fixes: debbugs:2490 --- lisp/ChangeLog | 4 ++++ lisp/progmodes/compile.el | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index dfea2f43e54..d503171245d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,9 @@ 2011-07-12 Lars Magne Ingebrigtsen + * progmodes/compile.el (compilation-error-regexp-alist-alist): + Fontise bytecomp Error lines more correctly (bug#2490). Fix + suggested by Johan Bockgård. + * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient. * dired-x.el (dired-guess-default): Use `delete-dups'. diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 3a9463f0f97..d9316764895 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -251,7 +251,7 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2 nil (1)) \\([0-9]*[^0-9\n]\\(?:[^\n :]\\| [^-/\n]\\|:[^ \n]\\)*?\\): ?\ \\([0-9]+\\)\\(?:[.:]\\([0-9]+\\)\\)?\ \\(?:-\\([0-9]+\\)?\\(?:\\.\\([0-9]+\\)\\)?\\)?:\ -\\(?: *\\(\\(?:Future\\|Runtime\\)?[Ww]arning\\|W:\\)\\|\ +\\(?: *\\(\\(?:Future\\|Runtime\\)?[Ww]arning\\|W:\\|[Ee]rror\\)\\|\ *\\([Ii]nfo\\(?:\\>\\|rmationa?l?\\)\\|I:\\|instantiated from\\|[Nn]ote\\)\\|\ \[0-9]?\\(?:[^0-9\n]\\|$\\)\\|[0-9][0-9][0-9]\\)" 1 (2 . 4) (3 . 5) (6 . 7)) -- 2.39.5