summaryrefslogtreecommitdiff
path: root/cider-browse-ns.el
diff options
context:
space:
mode:
Diffstat (limited to 'cider-browse-ns.el')
-rw-r--r--cider-browse-ns.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/cider-browse-ns.el b/cider-browse-ns.el
index 7134ce55..532283e2 100644
--- a/cider-browse-ns.el
+++ b/cider-browse-ns.el
@@ -172,7 +172,7 @@ Each item consists of a ns-var and the first line of its docstring."
(defun cider-browse-ns--thing-at-point ()
"Get the thing at point.
Return a list of the type ('ns or 'var) and the value."
- (let ((line (car (split-string (cider-string-trim (thing-at-point 'line)) " "))))
+ (let ((line (car (split-string (string-trim (thing-at-point 'line)) " "))))
(if (string-match "\\." line)
(list 'ns line)
(list 'var (format "%s/%s"