diff options
| author | Jonas Westlund <jonaswestlund101@gmail.com> | 2019-02-04 23:50:12 +0100 |
|---|---|---|
| committer | Jonas Westlund <jonaswestlund101@gmail.com> | 2019-02-04 23:50:12 +0100 |
| commit | ce7a27fffc0829c8112578f9d99fcbef0b173553 (patch) | |
| tree | 849065228147cd5e1fa565d9c2ddb1cc1c936af8 /rust-mode.el | |
| parent | 54a9c3d3f501620cdf3f2d86f239571c1cc87fc6 (diff) | |
| download | rust-mode-ce7a27fffc0829c8112578f9d99fcbef0b173553.tar.gz | |
Add compilation mode warning face
Diffstat (limited to 'rust-mode.el')
| -rw-r--r-- | rust-mode.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rust-mode.el b/rust-mode.el index a433d8d..fb9832a 100644 --- a/rust-mode.el +++ b/rust-mode.el @@ -1594,14 +1594,14 @@ This is written mainly to be used as `end-of-defun-function' for Rust." (when rust-format-on-save (unless (executable-find rust-rustfmt-bin) (error "Could not locate executable \"%s\"" rust-rustfmt-bin)))) - + (defvar rustc-compilation-regexps (let ((file "\\([^\n]+\\)") (start-line "\\([0-9]+\\)") (start-col "\\([0-9]+\\)")) - (let ((re (concat "^ *--> " file ":" start-line ":" start-col ; --> 1:2:3 + (let ((re (concat "^\\(?:error\\|\\(warning\\)\\)[^-]+--> \\(" file ":" start-line ":" start-col "\\)" ; --> 1:2:3 ))) - (cons re '(1 2 3)))) + (cons re '(3 4 5 (1) 2)))) "Specifications for matching errors in rustc invocations. See `compilation-error-regexp-alist' for help on their format.") |
