branch: elpa/cider
commit de162d58c4fc452ea04cd0aef33593783980fef4
Author: yuhan0 <[email protected]>
Commit: yuhan0 <[email protected]>
Redundant rx or clause
(second clause always matches)
---
cider-eval.el | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/cider-eval.el b/cider-eval.el
index 366207a1bb..16608ca435 100644
--- a/cider-eval.el
+++ b/cider-eval.el
@@ -633,10 +633,7 @@ lol in this context, compiling:(/foo/core.clj:10:1)\"
(defconst cider--clojure-execution-error-regexp
`(sequence
"Execution error "
- (or (sequence "("
- (minimal-match (one-or-more anything))
- ")")
- (minimal-match (zero-or-more anything)))
+ (minimal-match (zero-or-more anything))
,cider-clojure-1.10--location))
(defconst cider--clojure-spec-execution-error-regexp