File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -561,7 +561,7 @@ It delegates the actual error content to the eval or op handler."
561
561
(cider-default-err-eval-handler))
562
562
(t (cider-default-err-eval-print-handler))))
563
563
564
-
564
+ ; ; See `cider-compilation-regexp' for interpretation of match groups.
565
565
(defconst cider-clojure-1.10--location
566
566
'(sequence
567
567
(or " at ("
@@ -676,7 +676,11 @@ A few example values that will match:
676
676
" )" ))
677
677
678
678
(defvar cider-compilation-regexp
679
- (list cider-clojure-compilation-regexp 2 3 4 '(1 ))
679
+ (list cider-clojure-compilation-regexp
680
+ 2 ; FILE
681
+ 3 ; LINE
682
+ 4 ; COLUMN
683
+ '(1 )) ; TYPE = (WARNING . INFO)
680
684
" Specifications for matching errors and warnings in Clojure stacktraces.
681
685
See `compilation-error-regexp-alist' for help on their format." )
682
686
You can’t perform that action at this time.
0 commit comments