We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0e3878 commit 73b3afdCopy full SHA for 73b3afd
rust-mode.el
@@ -1162,11 +1162,11 @@ This is written mainly to be used as `end-of-defun-function' for Rust."
1162
(start-col "\\([0-9]+\\)")
1163
(end-line "\\([0-9]+\\)")
1164
(end-col "\\([0-9]+\\)")
1165
- (error-or-warning "\\(?:[Ee]rror\\|\\([Ww]arning\\)\\)"))
+ (msg-type "\\(?:[Ee]rror\\|\\([Ww]arning\\)\\|\\([Nn]ote\\)\\)"))
1166
(let ((re (concat "^" file ":" start-line ":" start-col
1167
": " end-line ":" end-col
1168
- " \\(?:[Ee]rror\\|\\([Ww]arning\\)\\):")))
1169
- (cons re '(1 (2 . 4) (3 . 5) (6)))))
+ " " msg-type ":")))
+ (cons re '(1 (2 . 4) (3 . 5) (6 . 7)))))
1170
"Specifications for matching errors in rustc invocations.
1171
See `compilation-error-regexp-alist' for help on their format.")
1172
0 commit comments