diff options
author | Mattias EngdegÄrd <mattiase@acm.org> | 2019-10-04 15:29:31 +0200 |
---|---|---|
committer | Mattias EngdegÄrd <mattiase@acm.org> | 2019-10-04 15:43:15 +0200 |
commit | 32558cfe53b187e3bbdfb532c7ce64ab9b0cd4f5 (patch) | |
tree | 3a7b581f61f4cdc1277380d839dbc26e614d2375 /lisp | |
parent | d09cbcee9ce90171a20a3cae4a27dc08dcb1af41 (diff) | |
download | emacs-32558cfe53b187e3bbdfb532c7ce64ab9b0cd4f5.tar.gz emacs-32558cfe53b187e3bbdfb532c7ce64ab9b0cd4f5.tar.bz2 emacs-32558cfe53b187e3bbdfb532c7ce64ab9b0cd4f5.zip |
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.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/progmodes/compile.el | 2 |
1 files changed, 1 insertions, 1 deletions
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")))) |