diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-06-30 11:04:15 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-06-30 11:04:15 +0200 |
commit | c59b8dfefa01f10687e1b5597088b2371275c421 (patch) | |
tree | 85f293aaa4179b15f1fa6e665a84ba632a2a2963 /lisp/progmodes/compile.el | |
parent | febefd6adb9c4b4f6d3a98c678e52b97859c8066 (diff) | |
download | emacs-c59b8dfefa01f10687e1b5597088b2371275c421.tar.gz emacs-c59b8dfefa01f10687e1b5597088b2371275c421.tar.bz2 emacs-c59b8dfefa01f10687e1b5597088b2371275c421.zip |
Recognize Gradle error messages in compile-mode
* lisp/progmodes/compile.el
(compilation-error-regexp-alist-alist): Recognize Gradle errors
(bug#56249).
Diffstat (limited to 'lisp/progmodes/compile.el')
-rw-r--r-- | lisp/progmodes/compile.el | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index db57093559d..9f33186d8b1 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -276,7 +276,16 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2 nil (1)) "): ") 3 4 5 (1 . 2)) - (iar + (gradle-android + ,(rx bol (* " ") "ERROR:" + (group-n 1 ; file + (+ (not (in ":\n")))) + ":" + (group-n 2 (+ digit)) ; line + ": ") + 1 2) + + (iar "^\"\\(.*\\)\",\\([0-9]+\\)\\s-+\\(?:Error\\|Warnin\\(g\\)\\)\\[[0-9]+\\]:" 1 2 nil (3)) |