Skip to content

Commit d3d3223

Browse files
committed
Replaced s-contains-p
As per clojure-emacs#293 replacing s.el functions with the ones that come as default with Emacs
1 parent 5a3b3cc commit d3d3223

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

clj-refactor.el

+6-1
Original file line numberDiff line numberDiff line change
@@ -2629,7 +2629,12 @@ See: https://github.com/clojure-emacs/clj-refactor.el/wiki/cljr-clean-ns"
26292629
(cljr--insert-libspec-verbosely missing)))
26302630

26312631
(defun cljr--qualified-symbol-p (symbol)
2632-
(s-contains-p "/" (format "%s" symbol)))
2632+
(thread-last symbol
2633+
(format "%s")
2634+
regexp-quote
2635+
(string-match-p "/")
2636+
null
2637+
not))
26332638

26342639
(defun cljr--symbol-prefix (symbol)
26352640
"java.util.Date => java.util

0 commit comments

Comments
 (0)