We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c801dda + 30d1dac commit a2e9f56Copy full SHA for a2e9f56
rust-mode.el
@@ -1173,11 +1173,11 @@ This is written mainly to be used as `end-of-defun-function' for Rust."
1173
(start-col "\\([0-9]+\\)")
1174
(end-line "\\([0-9]+\\)")
1175
(end-col "\\([0-9]+\\)")
1176
- (error-or-warning "\\(?:[Ee]rror\\|\\([Ww]arning\\)\\)"))
+ (msg-type "\\(?:[Ee]rror\\|\\([Ww]arning\\)\\|\\([Nn]ote\\|[Hh]elp\\)\\)"))
1177
(let ((re (concat "^" file ":" start-line ":" start-col
1178
": " end-line ":" end-col
1179
- " " error-or-warning ":")))
1180
- (cons re '(1 (2 . 4) (3 . 5) (6)))))
+ " " msg-type ":")))
+ (cons re '(1 (2 . 4) (3 . 5) (6 . 7)))))
1181
"Specifications for matching errors in rustc invocations.
1182
See `compilation-error-regexp-alist' for help on their format.")
1183
0 commit comments