diff options
| author | Niko Matsakis <niko@alum.mit.edu> | 2018-03-22 04:27:04 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-22 04:27:04 -0400 |
| commit | 07e16c6364bf0362f76c6aa46604453dec3ac640 (patch) | |
| tree | 42d43bbad77313594e7b9a9a60f3719fdeaa2e36 | |
| parent | 42c98bbf3550aff91fd2a3f24637508b408d4cdb (diff) | |
| parent | 1275a1996329a72d1bdd833e653f21303bc1f498 (diff) | |
| download | rust-mode-07e16c6364bf0362f76c6aa46604453dec3ac640.tar.gz | |
Merge pull request #265 from brotzeit/infotype
make rustc-colon-compilation-regexps an info type
| -rw-r--r-- | rust-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust-mode.el b/rust-mode.el index 360943d..011f615 100644 --- a/rust-mode.el +++ b/rust-mode.el @@ -1590,7 +1590,7 @@ See `compilation-error-regexp-alist' for help on their format.") (start-col "\\([0-9]+\\)")) (let ((re (concat "^ *::: " file ":" start-line ":" start-col ; ::: foo/bar.rs ))) - (cons re '(1 2 3)))) + (cons re '(1 2 3 0)))) ;; 0 for info type "Specifications for matching `:::` hints in rustc invocations. See `compilation-error-regexp-alist' for help on their format.") |
