File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2062,8 +2062,8 @@ If it's present KEY indicates the key to extract from the response."
2062
2062
(splitting the string at numbers and doing numeric compare with them).
2063
2063
It is optimized for version comparisons, in that empty strings are sorted
2064
2064
before non-empty. This lets 1.7.0 be sorted above 1.7.0-RC1."
2065
- (let ((str1-components (cljr--dict-split (s- downcase str1)))
2066
- (str2-components (cljr--dict-split (s- downcase str2))))
2065
+ (let ((str1-components (cljr--dict-split (downcase str1)))
2066
+ (str2-components (cljr--dict-split (downcase str2))))
2067
2067
(cljr--dict-lessp str1-components str2-components)))
2068
2068
2069
2069
(defun cljr--dict-lessp (slist1 slist2 )
@@ -3089,8 +3089,8 @@ if REMOVE-PACKAGE_VERSION is t get rid of the (package: 20150828.1048) suffix."
3089
3089
" Check whether clj-refactor and nrepl-refactor versions are the same"
3090
3090
(let ((refactor-nrepl-version (or (cljr--middleware-version)
3091
3091
" n/a" )))
3092
- (unless (string-equal (s- downcase refactor-nrepl-version)
3093
- (s- downcase (cljr--version :remove-package-version )))
3092
+ (unless (string-equal (downcase refactor-nrepl-version)
3093
+ (downcase (cljr--version :remove-package-version )))
3094
3094
(cider-repl-emit-interactive-stderr
3095
3095
(format " WARNING: clj-refactor and refactor-nrepl are out of sync.
3096
3096
Their versions are %s and %s , respectively.
You can’t perform that action at this time.
0 commit comments