Skip to content

Commit 0a1f536

Browse files
committed
[Fix #2421] Use the right version comparison function
Otherwise when you're on the minimum required version you'd get a warning.
1 parent 076ab35 commit 0a1f536

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cider-connection.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ message in the REPL area."
207207
((null middleware-version)
208208
(cider-emit-manual-warning "troubleshooting/#cider-complains-of-the-cider-nrepl-version"
209209
"CIDER requires cider-nrepl to be fully functional. Many things will not work without it!"))
210-
((version<= middleware-version cider-required-middleware-version)
210+
((version< middleware-version cider-required-middleware-version)
211211
(cider-emit-manual-warning "troubleshooting/#cider-complains-of-the-cider-nrepl-version"
212212
"CIDER %s requires cider-nrepl %s+, but you're currently using cider-nrepl %s. Things will break!"
213213
cider-version cider-required-middleware-version middleware-version)))))

0 commit comments

Comments
 (0)