summaryrefslogtreecommitdiff
path: root/elisp
diff options
context:
space:
mode:
authorJose Antonio Ortega Ruiz <jao@gnu.org>2009-05-25 03:39:47 +0200
committerJose Antonio Ortega Ruiz <jao@gnu.org>2009-05-25 03:39:47 +0200
commitac726e6c49846b920466650fe9f3b57b1eb50e20 (patch)
treeedfe88d359c61ebcbd2a3bbd9841da13fbcb453a /elisp
parent76d5f69c79182687225248a7a0e424ef990daafd (diff)
downloadgeiser-chez-ac726e6c49846b920466650fe9f3b57b1eb50e20.tar.gz
geiser-chez-ac726e6c49846b920466650fe9f3b57b1eb50e20.tar.bz2
PLT: New help functionality:
- Using our own help function, which takes care of trying on not yet loaded modules. - Module children implemented.
Diffstat (limited to 'elisp')
-rw-r--r--elisp/geiser-plt.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/elisp/geiser-plt.el b/elisp/geiser-plt.el
index 572ec5f..e60a576 100644
--- a/elisp/geiser-plt.el
+++ b/elisp/geiser-plt.el
@@ -123,8 +123,8 @@ This function uses `geiser-plt-init-file' if it exists."
;;; External help
(defun geiser-plt-external-help (symbol module)
(message "Requesting help for '%s'..." symbol)
- (geiser-eval--send/wait `(:eval (help ,symbol) scheme/help))
- (message "%s done" (current-message))
+ (geiser-eval--send/wait `(:eval (get-help ',symbol (:module ,module)) geiser/autodoc))
+ (minibuffer-message "%s done" (current-message))
t)