We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce7a27f commit 63deaf3Copy full SHA for 63deaf3
rust-mode.el
@@ -1599,8 +1599,7 @@ This is written mainly to be used as `end-of-defun-function' for Rust."
1599
(let ((file "\\([^\n]+\\)")
1600
(start-line "\\([0-9]+\\)")
1601
(start-col "\\([0-9]+\\)"))
1602
- (let ((re (concat "^\\(?:error\\|\\(warning\\)\\)[^-]+--> \\(" file ":" start-line ":" start-col "\\)" ; --> 1:2:3
1603
- )))
+ (let ((re (concat "^\\(?:error\\|\\(warning\\)\\)[^-]+--> \\(" file ":" start-line ":" start-col "\\)")))
1604
(cons re '(3 4 5 (1) 2))))
1605
"Specifications for matching errors in rustc invocations.
1606
See `compilation-error-regexp-alist' for help on their format.")
0 commit comments