Skip to content

Commit e1e7414

Browse files
committed
Avoid No comment syntax is defined prompts
Part of clojure-emacs/cider#2903
1 parent 661c80e commit e1e7414

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## master (unreleased)
44

5+
### Changes
6+
7+
* [cider#2903](https://github.com/clojure-emacs/cider/issues/2903): Avoid `No comment syntax is defined` prompts.
8+
59
## 5.17.1 (2023-09-12)
610

711
### Changes

clojure-mode.el

+2-2
Original file line numberDiff line numberDiff line change
@@ -2084,7 +2084,7 @@ content) are considered part of the preceding sexp."
20842084
(defun clojure-sort-ns ()
20852085
"Internally sort each sexp inside the ns form."
20862086
(interactive)
2087-
(comment-normalize-vars)
2087+
(comment-normalize-vars t) ;; `t`: avoid prompts
20882088
(if (clojure-find-ns)
20892089
(save-excursion
20902090
(goto-char (match-beginning 0))
@@ -2230,7 +2230,7 @@ Returns a list pair, e.g. (\"defn\" \"abc\") or (\"deftest\" \"some-test\")."
22302230
(defun clojure--looking-at-non-logical-sexp ()
22312231
"Return non-nil if text after point is \"non-logical\" sexp.
22322232
\"Non-logical\" sexp are ^metadata and #reader.macros."
2233-
(comment-normalize-vars)
2233+
(comment-normalize-vars t) ;; `t`: avoid prompts
22342234
(comment-forward (point-max))
22352235
(looking-at-p "\\(?:#?\\^\\)\\|#:?:?[[:alpha:]]"))
22362236

0 commit comments

Comments
 (0)