Skip to content

Commit 311df3c

Browse files
committed
Fix a malformed call-site
* cider-browse-ns.el (cider-browse-ns--doc-at-point): Fixup. * CHANGELOG.md: Update.
1 parent 89e6217 commit 311df3c

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## master (unreleased)
44

5+
* [#1164](https://github.com/clojure-emacs/cider/pull/1164): Fix an error in `cider-browse-ns--doc-at-point`.
6+
57
## 0.9.1 / 2015-06-24
68

79
### New features

cider-browse-ns.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126
"Expand browser according to thing at current point."
127127
(interactive)
128128
(-when-let (var (cider-browse-ns--var-at-point))
129-
((cider-doc-lookup var))))
129+
(cider-doc-lookup var)))
130130

131131
(defun cider-browse-ns--find-at-point ()
132132
(interactive)

0 commit comments

Comments
 (0)