We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58ce929 commit 1378a72Copy full SHA for 1378a72
cider-eval.el
@@ -564,10 +564,8 @@ It delegates the actual error content to the eval or op handler."
564
;; See `cider-compilation-regexp' for interpretation of match groups.
565
(defconst cider-clojure-1.10--location
566
'(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
- " ("))
+ "at " (minimal-match (zero-or-more anything)) ;; the fully-qualified name of the function that triggered the error
+ "("
571
(group-n 2 (minimal-match (zero-or-more anything))) ; source file
572
":" (group-n 3 (one-or-more (any "-" digit))) ; line number, may be negative (#3687)
573
(optional
0 commit comments