diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2009-02-28 17:16:20 +0100 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2009-02-28 17:16:20 +0100 |
commit | 8563be5f22eda87cf676ad62a252295aa40f0b64 (patch) | |
tree | 669044f03a16f9be4a81bd41cafbd59bb1322293 /elisp/geiser-autodoc.el | |
parent | 0e5a50991969364df18c8982b2066e4eb08d0d04 (diff) | |
download | geiser-8563be5f22eda87cf676ad62a252295aa40f0b64.tar.gz geiser-8563be5f22eda87cf676ad62a252295aa40f0b64.tar.bz2 |
Refactoring: local bindings discovery moved to schemeland.
Diffstat (limited to 'elisp/geiser-autodoc.el')
-rw-r--r-- | elisp/geiser-autodoc.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elisp/geiser-autodoc.el b/elisp/geiser-autodoc.el index 5d5befa..b1f5ae1 100644 --- a/elisp/geiser-autodoc.el +++ b/elisp/geiser-autodoc.el @@ -123,7 +123,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 t)) "") + (or (geiser-autodoc--function-args (geiser-syntax--get-partial-sexp)) "") (error (format "Autodoc not available (%s)" (error-message-string e))))) |