diff options
| author | Jonas Westlund <jonaswestlund101@gmail.com> | 2019-02-05 00:28:20 +0100 |
|---|---|---|
| committer | Jonas Westlund <jonaswestlund101@gmail.com> | 2019-02-05 00:28:20 +0100 |
| commit | 63deaf385a632bb6e289ebd99ebd4dc136621084 (patch) | |
| tree | a1d0219815b81a7856d6ce58b5a8d4865b677215 /rust-mode.el | |
| parent | ce7a27fffc0829c8112578f9d99fcbef0b173553 (diff) | |
| download | rust-mode-63deaf385a632bb6e289ebd99ebd4dc136621084.tar.gz | |
Remove old comment
Diffstat (limited to 'rust-mode.el')
| -rw-r--r-- | rust-mode.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/rust-mode.el b/rust-mode.el index fb9832a..aac4def 100644 --- a/rust-mode.el +++ b/rust-mode.el @@ -1599,8 +1599,7 @@ This is written mainly to be used as `end-of-defun-function' for Rust." (let ((file "\\([^\n]+\\)") (start-line "\\([0-9]+\\)") (start-col "\\([0-9]+\\)")) - (let ((re (concat "^\\(?:error\\|\\(warning\\)\\)[^-]+--> \\(" file ":" start-line ":" start-col "\\)" ; --> 1:2:3 - ))) + (let ((re (concat "^\\(?:error\\|\\(warning\\)\\)[^-]+--> \\(" file ":" start-line ":" start-col "\\)"))) (cons re '(3 4 5 (1) 2)))) "Specifications for matching errors in rustc invocations. See `compilation-error-regexp-alist' for help on their format.") |
