mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-06-14 12:31:25 +00:00
; Explain some details about rust-panic rule (bug#80403)
This commit is contained in:
parent
60bbe8786a
commit
b715ae5b34
1 changed files with 5 additions and 1 deletions
|
|
@ -405,8 +405,12 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2 nil (1))
|
|||
(ruby-Test::Unit
|
||||
"^ [[ ]?\\([^ (].*\\):\\([1-9][0-9]*\\)\\(\\]\\)?:in " 1 2)
|
||||
|
||||
;; This must precede the `gnu' rule or the latter would match instead.
|
||||
(rust-panic
|
||||
,(rx bol (opt " ")
|
||||
,(rx bol
|
||||
;; The test runner cargo-nextest indents its output by four spaces
|
||||
;; by default, although that can be disabled.
|
||||
(opt " ")
|
||||
"thread '" (+ nonl) "' " (? "(" (+ digit) ") ")
|
||||
(group-n 1 "panicked" ) " at"
|
||||
" " (group-n 2 (+ nonl)) ; file
|
||||
|
|
|
|||
Loading…
Reference in a new issue