summaryrefslogtreecommitdiff
path: root/rust-mode.el
diff options
context:
space:
mode:
authorNathan Moreau <nathan.moreau@m4x.org>2019-10-18 16:24:31 +0200
committerGitHub <noreply@github.com>2019-10-18 16:24:31 +0200
commit7e2533f00e7b8e2f0b1f81a124263fdfb58cdc84 (patch)
treef91276d1f43611aabfd1bbb8e5605f0497cef148 /rust-mode.el
parent6dca073b6b59467e661095c5e27ce5827bc36cc7 (diff)
downloadrust-mode-7e2533f00e7b8e2f0b1f81a124263fdfb58cdc84.tar.gz
Fix rustc-compilation-regexps: match error messages with dashes. (#331)
Diffstat (limited to 'rust-mode.el')
-rw-r--r--rust-mode.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/rust-mode.el b/rust-mode.el
index 71e9458..7b14d04 100644
--- a/rust-mode.el
+++ b/rust-mode.el
@@ -1640,8 +1640,8 @@ Return the created process."
(defvar rustc-compilation-regexps
(let ((file "\\([^\n]+\\)")
(start-line "\\([0-9]+\\)")
- (start-col "\\([0-9]+\\)"))
- (let ((re (concat "^\\(?:error\\|\\(warning\\)\\)[^-]+--> \\(" file ":" start-line ":" start-col "\\)")))
+ (start-col "\\([0-9]+\\)"))
+ (let ((re (concat "^\\(?:error\\|\\(warning\\)\\)[^\0]+?--> \\(" 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.")