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
commit8f9f7664a05c44d3d94bd94695bbff6c5547913d (patch)
treeda3fefb43e2a8a4ace98a47d85f802d1b53946cf /elisp
parentd4b72988d8b04d2bf389660f69300b02441d1b1c (diff)
downloadgeiser-8f9f7664a05c44d3d94bd94695bbff6c5547913d.tar.gz
geiser-8f9f7664a05c44d3d94bd94695bbff6c5547913d.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)