summaryrefslogtreecommitdiff
path: root/cider-doc.el
diff options
context:
space:
mode:
authorChaitanya Koparkar <ckoparkar@live.in>2016-05-22 08:42:34 +0530
committerBozhidar Batsov <bozhidar.batsov@gmail.com>2016-05-21 20:12:34 -0700
commit873206e155b1ad39ad3b775d58d751a664622f66 (patch)
treeaa14794ae76019815415e3f061735f6699fc82a3 /cider-doc.el
parent939ce7327185f50c024bc499bf42d6e613c9838f (diff)
[#1746] Parse docstrings to create help var xrefs (#1750)
Diffstat (limited to 'cider-doc.el')
-rw-r--r--cider-doc.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/cider-doc.el b/cider-doc.el
index 8d4f7418..fe64aaf3 100644
--- a/cider-doc.el
+++ b/cider-doc.el
@@ -456,7 +456,6 @@ Tables are marked to be ignored by line wrap."
(when see-also
(insert "\n\n Also see: ")
(mapc (lambda (ns-sym)
-
(let* ((ns-sym-split (split-string ns-sym "/"))
(see-also-ns (car ns-sym-split))
(see-also-sym (cadr ns-sym-split))
@@ -468,7 +467,7 @@ Tables are marked to be ignored by line wrap."
'help-function (apply-partially #'cider-doc-lookup symbol)))
(insert " "))
see-also))
- (help-make-xrefs)
+ (cider--help-make-xrefs)
(let ((beg (point-min))
(end (point-max)))
(nrepl-dict-map (lambda (k v)