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 | 92ebee294b4d66abbbb3250ce910239427c48ebb (patch) | |
tree | fecbd5833c0af3664f9dd6d7b7dccec683d84799 /elisp/geiser-autodoc.el | |
parent | fcc581bea01856c8c644bf3e312c2369949b353f (diff) | |
download | geiser-92ebee294b4d66abbbb3250ce910239427c48ebb.tar.gz geiser-92ebee294b4d66abbbb3250ce910239427c48ebb.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 |