Skip to content

Commit a8caa21

Browse files
Match windows file names in cider-compilation-regexp
The previous regex was too restrictive: Windows file names always contain a colon.
1 parent b96fbff commit a8caa21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cider-interaction.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -811,7 +811,7 @@ It delegates the actual error content to the eval or op handler."
811811
(cider-default-err-eval-handler)))
812812

813813
(defvar cider-compilation-regexp
814-
'("\\(?:.*\\(warning, \\)\\|.*?\\(, compiling\\):(\\)\\([^:]*\\):\\([[:digit:]]+\\)\\(?::\\([[:digit:]]+\\)\\)?\\(\\(?: - \\(.*\\)\\)\\|)\\)" 3 4 5 (1))
814+
'("\\(?:.*\\(warning, \\)\\|.*?\\(, compiling\\):(\\)\\(.*?\\):\\([[:digit:]]+\\)\\(?::\\([[:digit:]]+\\)\\)?\\(\\(?: - \\(.*\\)\\)\\|)\\)" 3 4 5 (1))
815815
"Specifications for matching errors and warnings in Clojure stacktraces.
816816
See `compilation-error-regexp-alist' for help on their format.")
817817

0 commit comments

Comments
 (0)