summaryrefslogtreecommitdiff
path: root/elisp/geiser-autodoc.el
diff options
context:
space:
mode:
authorJose Antonio Ortega Ruiz <jao@gnu.org>2009-03-02 01:06:14 +0100
committerJose Antonio Ortega Ruiz <jao@gnu.org>2009-03-02 01:06:14 +0100
commit2896240921784f0b7f6b9bcf1c658024c9d9dc25 (patch)
tree7260f7d3bdf78724736d6acf55d7dc364a5b0e6a /elisp/geiser-autodoc.el
parent97d1170d4170933a317782dbf353eddf41f09802 (diff)
downloadgeiser-chez-2896240921784f0b7f6b9bcf1c658024c9d9dc25.tar.gz
geiser-chez-2896240921784f0b7f6b9bcf1c658024c9d9dc25.tar.bz2
Fix (again!) completion for symbols outside enclosing forms.
Diffstat (limited to 'elisp/geiser-autodoc.el')
-rw-r--r--elisp/geiser-autodoc.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/elisp/geiser-autodoc.el b/elisp/geiser-autodoc.el
index 63eb3b9..4e8a5bf 100644
--- a/elisp/geiser-autodoc.el
+++ b/elisp/geiser-autodoc.el
@@ -126,7 +126,7 @@ when `geiser-autodoc-display-module-p' is on."
(defun geiser-autodoc--eldoc-function ()
(condition-case e
- (or (geiser-autodoc--function-args (geiser-syntax--get-partial-sexp)) "")
+ (geiser-autodoc--function-args (geiser-syntax--get-partial-sexp))
(error (format "Autodoc not available (%s)" (error-message-string e)))))