Skip to content

Commit 2f73878

Browse files
xiongtxbbatsov
authored andcommitted
[Fix #426] Correct docstring of clojure--looking-at-non-logical-sexp (#427)
1 parent 0113aa9 commit 2f73878

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

clojure-mode.el

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1741,8 +1741,9 @@ Returns a list pair, e.g. (\"defn\" \"abc\") or (\"deftest\" \"some-test\")."
17411741

17421742
;;; Sexp navigation
17431743
(defun clojure--looking-at-non-logical-sexp ()
1744-
"Return non-nil if sexp after point represents code.
1745-
Sexps that don't represent code are ^metadata or #reader.macros."
1744+
"Return non-nil if text after point is \"non-logical\" sexp.
1745+
1746+
\"Non-logical\" sexp are ^metadata and #reader.macros."
17461747
(comment-normalize-vars)
17471748
(comment-forward (point-max))
17481749
(looking-at-p "\\^\\|#[?[:alpha:]]"))

0 commit comments

Comments
 (0)