summaryrefslogtreecommitdiff
path: root/.emacs.d/lisp/rust-compile.el
diff options
context:
space:
mode:
authorSimeon Simeonov2026-07-22 11:10:34 +0200
committerSimeon Simeonov2026-07-22 11:10:34 +0200
commit85601f50f236686da662b1b00e01df0a0abe761b (patch)
treeab188e994e2bc569e0f4291c8428e13721245ebe /.emacs.d/lisp/rust-compile.el
parent5ae7014a54984c194f103d406f9fbdbafb277885 (diff)
Update markdown-mode, rust-mode and yaml-mode. Remove unused snippets
Diffstat (limited to '.emacs.d/lisp/rust-compile.el')
-rw-r--r--.emacs.d/lisp/rust-compile.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/.emacs.d/lisp/rust-compile.el b/.emacs.d/lisp/rust-compile.el
index cbdf43a..87b8c57 100644
--- a/.emacs.d/lisp/rust-compile.el
+++ b/.emacs.d/lisp/rust-compile.el
@@ -41,9 +41,10 @@ See `compilation-error-regexp-alist' for help on their format.")
41See `compilation-error-regexp-alist' for help on their format.") 41See `compilation-error-regexp-alist' for help on their format.")
42 42
43(defvar rustc-panics-compilation-regexps 43(defvar rustc-panics-compilation-regexps
44 (let ((re (concat "thread '[^']+' panicked at " rustc-compilation-location))) 44 (let ((re (concat "thread '[^']+'\\(?: ([0-9]+)\\)? panicked at "
45 (cons re '(2 3 4 nil 1))) 45 rustc-compilation-location)))
46 "Specifications for matching panics in rustc invocations. 46 (cons re '(2 3 4 nil 1)))
47 "Specifications for matching panics in rustc invocations.
47See `compilation-error-regexp-alist' for help on their format.") 48See `compilation-error-regexp-alist' for help on their format.")
48 49
49;; Match test run failures and panics during compilation as 50;; Match test run failures and panics during compilation as