File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -568,8 +568,8 @@ It delegates the actual error content to the eval or op handler."
568
568
" (" ))
569
569
(group-n 2 (minimal-match (zero-or-more anything)))
570
570
" :"
571
- (group-n 3 (one-or-more digit))
572
- (optional " :" (group-n 4 (one-or-more digit)))
571
+ (group-n 3 (one-or-more (any " - " digit))) ; ; line numbers may be negative (#3687 )
572
+ (optional " :" (group-n 4 (one-or-more (any " - " digit) )))
573
573
" )." ))
574
574
575
575
(defconst cider-clojure-1.10-error (append `(sequence
@@ -597,8 +597,8 @@ It delegates the actual error content to the eval or op handler."
597
597
" , "
598
598
(group-n 2 (minimal-match (zero-or-more anything)))
599
599
" :"
600
- (group-n 3 (one-or-more digit))
601
- (optional " :" (group-n 4 (one-or-more digit)))
600
+ (group-n 3 (one-or-more (any " - " digit) ))
601
+ (optional " :" (group-n 4 (one-or-more (any " - " digit) )))
602
602
" - " ))
603
603
604
604
; ; Please keep this in sync with `cider-clojure-compilation-error-regexp' ,
You can’t perform that action at this time.
0 commit comments