Skip to content

Commit 1dc343f

Browse files
p4v4nvemv
authored andcommitted
Fix clojure-find-ns for ns forms preceded by whitespace (#661)
Closes #593
1 parent a6a688d commit 1dc343f

File tree

3 files changed

+24
-3
lines changed

3 files changed

+24
-3
lines changed

CHANGELOG.md

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

77
* Improve support for multiple forms in the same line by replacing `beginning-of-defun` fn.
88

9+
### Bugs fixed
10+
11+
* [#593](https://github.com/clojure-emacs/clojure-mode/issues/593): Fix clojure-find-ns when ns form is preceded by whitespace or inside comment form.
12+
913
## 5.16.2 (2023-08-23)
1014

1115
### Changes

clojure-mode.el

+3-3
Original file line numberDiff line numberDiff line change
@@ -2125,7 +2125,7 @@ content) are considered part of the preceding sexp."
21252125
(make-obsolete-variable 'clojure-namespace-name-regex 'clojure-namespace-regexp "5.12.0")
21262126

21272127
(defconst clojure-namespace-regexp
2128-
(rx line-start "(" (? "clojure.core/") (or "in-ns" "ns" "ns+") symbol-end))
2128+
(rx line-start (zero-or-more whitespace) "(" (? "clojure.core/") (or "in-ns" "ns" "ns+") symbol-end))
21292129

21302130
(defcustom clojure-cache-ns nil
21312131
"Whether to cache the results of `clojure-find-ns'.
@@ -2153,7 +2153,7 @@ DIRECTION is `forward' or `backward'."
21532153
(save-match-data
21542154
(goto-char end)
21552155
(clojure-forward-logical-sexp)
2156-
(unless (or (clojure--in-string-p) (clojure--in-comment-p))
2156+
(unless (or (clojure--in-string-p) (clojure--in-comment-p) (clojure-top-level-form-p "comment"))
21572157
(setq candidate (string-remove-prefix "'" (thing-at-point 'symbol))))))))
21582158
candidate))
21592159

@@ -3224,7 +3224,7 @@ With universal argument \\[universal-argument], act on the \"top-level\" form."
32243224
(beginning-of-defun-raw)
32253225
(clojure--toggle-ignore-next-sexp)))
32263226

3227-
3227+
32283228
;;; ClojureScript
32293229
(defconst clojurescript-font-lock-keywords
32303230
(eval-when-compile

test/clojure-mode-util-test.el

+17
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,23 @@
8282
(expect (clojure-find-ns) :to-equal "foo"))
8383
(with-clojure-buffer "(ns ^:bar ^:baz foo)"
8484
(expect (clojure-find-ns) :to-equal "foo")))
85+
(it "should find namespaces with spaces before ns form"
86+
(with-clojure-buffer " (ns foo)"
87+
(expect (clojure-find-ns) :to-equal "foo")))
88+
(it "should skip namespaces within any comment forms"
89+
(with-clojure-buffer "(comment
90+
(ns foo))"
91+
(expect (clojure-find-ns) :to-equal nil))
92+
(with-clojure-buffer " (ns foo)
93+
(comment
94+
(ns bar))"
95+
(expect (clojure-find-ns) :to-equal "foo"))
96+
(with-clojure-buffer " (comment
97+
(ns foo))
98+
(ns bar)
99+
(comment
100+
(ns baz))"
101+
(expect (clojure-find-ns) :to-equal "bar")))
85102
(it "should find namespace declarations with nested metadata and docstrings"
86103
(with-clojure-buffer "(ns ^{:bar true} foo)"
87104
(expect (clojure-find-ns) :to-equal "foo"))

0 commit comments

Comments
 (0)