diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-10-30 04:57:31 +0200 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-10-30 04:57:31 +0200 |
commit | 89e1f6444208bc70deeeca765f212296ed11c634 (patch) | |
tree | 157946b1656e169664300497becf504f05a1c1b6 /elisp/geiser-autodoc.el | |
parent | d89131b0ff58fb6d8d12fa0404f2b0d26e964d72 (diff) | |
download | geiser-guile-89e1f6444208bc70deeeca765f212296ed11c634.tar.gz geiser-guile-89e1f6444208bc70deeeca765f212296ed11c634.tar.bz2 |
Elisp: more flexible parsing of :eval and :ge forms
This allows the implementation decide the concrete structure of the
code sent to the REPL. For instance, it doesn't need to be a single
s-expression, and argument order can be re-arranged.
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 bf57187..35a9834 100644 --- a/elisp/geiser-autodoc.el +++ b/elisp/geiser-autodoc.el @@ -70,7 +70,7 @@ when `geiser-autodoc-display-module-p' is on." (push f missing))))) (unless (or cached keep-cached) (geiser-autodoc--clean-cache)) (when missing - (let ((res (geiser-eval--send/result `(:eval ((:ge autodoc) + (let ((res (geiser-eval--send/result `(:eval (:ge autodoc (quote ,missing))) 500))) (when res |