We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d0eaa3 commit 84892b0Copy full SHA for 84892b0
clj-refactor.el
@@ -2007,10 +2007,7 @@ See: https://github.com/clojure-emacs/clj-refactor.el/wiki/cljr-project-clean"
2007
(let ((dividing-line "<===============================>"))
2008
(cljr--prepare-sort-buffer sorted-names vectors-and-meta dividing-line)
2009
(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 "]")))))
+ (concat "[" (string-trim (buffer-substring-no-properties (point) (point-max))) "]"))))
2014
2015
;;;###autoload
2016
(defun cljr-sort-project-dependencies ()
0 commit comments