Skip to content

Commit 84892b0

Browse files
committed
Removed s-(pre|ap)pend
1 parent 6d0eaa3 commit 84892b0

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

clj-refactor.el

+1-4
Original file line numberDiff line numberDiff line change
@@ -2007,10 +2007,7 @@ See: https://github.com/clojure-emacs/clj-refactor.el/wiki/cljr-project-clean"
20072007
(let ((dividing-line "<===============================>"))
20082008
(cljr--prepare-sort-buffer sorted-names vectors-and-meta dividing-line)
20092009
(cljr--sort-dependency-vectors-with-meta-and-comments dividing-line)
2010-
(thread-last (buffer-substring-no-properties (point) (point-max))
2011-
string-trim
2012-
(s-prepend "[")
2013-
(s-append "]")))))
2010+
(concat "[" (string-trim (buffer-substring-no-properties (point) (point-max))) "]"))))
20142011

20152012
;;;###autoload
20162013
(defun cljr-sort-project-dependencies ()

0 commit comments

Comments
 (0)