emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/rust-mode 5b0c565 2/3: Don't include the `', ` in compilat


From: ELPA Syncer
Subject: [nongnu] elpa/rust-mode 5b0c565 2/3: Don't include the `', ` in compilation highlighting
Date: Thu, 16 Dec 2021 16:58:13 -0500 (EST)

branch: elpa/rust-mode
commit 5b0c565bb3f18d8a086ec01b864e01307b29d5ce
Author: Zephyr Shannon <earthlingzephyr@gmail.com>
Commit: Zephyr Shannon <earthlingzephyr@gmail.com>

    Don't include the `', ` in compilation highlighting
    
    It's more distracting than helpful.
---
 rust-compile.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/rust-compile.el b/rust-compile.el
index 682fe61..78a53cf 100644
--- a/rust-compile.el
+++ b/rust-compile.el
@@ -37,8 +37,8 @@ See `compilation-error-regexp-alist' for help on their 
format.")
 ;; Match test run failures and panics during compilation as
 ;; compilation warnings
 (defvar cargo-compilation-regexps
-  '("', \\([^:]+\\):\\([0-9]+\\)"
-    1 2 nil nil 0)
+  '("', \\(\\([^:]+\\):\\([0-9]+\\)\\)"
+    2 3 nil nil 1)
   "Specifications for matching panics in cargo test invocations.
 See `compilation-error-regexp-alist' for help on their format.")
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]