branch: elpa/clojure-mode
commit 5c85010069761c17708d7284479d661939174dc2
Author: Bozhidar Batsov <[email protected]>
Commit: Bozhidar Batsov <[email protected]>
Remove redundant comment-normalize-vars call in clojure-sort-ns
This is already called during mode setup in clojure-mode-variables,
so the explicit call here is unnecessary.
---
clojure-mode.el | 1 -
1 file changed, 1 deletion(-)
diff --git a/clojure-mode.el b/clojure-mode.el
index 7ac5f4751f..22e8efc855 100644
--- a/clojure-mode.el
+++ b/clojure-mode.el
@@ -2168,7 +2168,6 @@ content) are considered part of the preceding sexp."
(defun clojure-sort-ns ()
"Internally sort each sexp inside the ns form."
(interactive)
- (comment-normalize-vars t) ;; `t`: avoid prompts
(if (clojure-find-ns)
(save-excursion
(goto-char (match-beginning 0))