Skip to content

Commit 7f5dd9c

Browse files
committed
Tweak docstrings
1 parent c86e4a1 commit 7f5dd9c

File tree

1 file changed

+3
-12
lines changed

1 file changed

+3
-12
lines changed

inf-clojure.el

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1508,21 +1508,12 @@ evaluating \\[inf-clojure-completion-form] at the REPL."
15081508
(inf-clojure--process-response completion-expr proc "(" ")"))))))
15091509

15101510
(defconst inf-clojure-clojure-expr-break-chars "^][ \"'`><,;|&{()@\\^"
1511-
"Regexp are hard.
1511+
"A list of characters that serve as expression boundaries.
15121512
1513-
This regex has been built in order to match the first of the
1514-
listed chars. There are a couple of quirks to consider:
1515-
1516-
- the ] is always a special in elisp regex so you have to put it
1517-
directly AFTER [ if you want to match it as literal.
1518-
- The ^ needs to be escaped with \\^.
1519-
1520-
Tests and `re-builder' are your friends.")
1513+
See `inf-clojure-completion-bounds-of-expr-at-point'.")
15211514

15221515
(defun inf-clojure--kw-to-symbol (kw)
1523-
"Convert the keyword KW to a symbol.
1524-
1525-
This guy was taken from CIDER, thanks folks."
1516+
"Convert the keyword KW to a symbol."
15261517
(when kw
15271518
(replace-regexp-in-string "\\`:+" "" kw)))
15281519

0 commit comments

Comments
 (0)