From 32558cfe53b187e3bbdfb532c7ce64ab9b0cd4f5 Mon Sep 17 00:00:00 2001 From: Mattias EngdegÄrd Date: Fri, 4 Oct 2019 15:29:31 +0200 Subject: Fix error in gnu compilation-mode regexp (bug#37582) * lisp/progmodes/compile.el (compilation-error-regexp-alist-alist): Fix a mistake introduced when the regexp was translated to rx. * test/lisp/progmodes/compile-tests.el (compile-tests--test-regexps-data) (compile-test-error-regexps): Add test case. * etc/compilation.txt: Add example. --- lisp/progmodes/compile.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lisp') diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index d80fef3103e..83efb3e0295 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -327,7 +327,7 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2 nil (1)) (: (* " ") (group-n 7 (| (regexp "[Ii]nfo\\(?:\\>\\|rmationa?l?\\)") "I:" - (: "[ skipping " (+ ".") " ]") + (: "[ skipping " (+ nonl) " ]") "instantiated from" "required from" (regexp "[Nn]ote")))) -- cgit v1.2.3