Skip to content

Commit 1378a72

Browse files
committed
Refactor an rx form
1 parent 58ce929 commit 1378a72

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

cider-eval.el

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -564,10 +564,8 @@ It delegates the actual error content to the eval or op handler."
564564
;; See `cider-compilation-regexp' for interpretation of match groups.
565565
(defconst cider-clojure-1.10--location
566566
'(sequence
567-
(or "at ("
568-
(sequence "at "
569-
(minimal-match (one-or-more anything)) ;; the fully-qualified name of the function that triggered the error
570-
" ("))
567+
"at " (minimal-match (zero-or-more anything)) ;; the fully-qualified name of the function that triggered the error
568+
"("
571569
(group-n 2 (minimal-match (zero-or-more anything))) ; source file
572570
":" (group-n 3 (one-or-more (any "-" digit))) ; line number, may be negative (#3687)
573571
(optional

0 commit comments

Comments
 (0)