diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-11-25 04:28:02 +0100 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-11-25 04:28:02 +0100 |
commit | 773a5037fa401907ae548c53a165bcb4ba7a4c1d (patch) | |
tree | a009b0469f673fecbf39b53d72afddf28a497683 /elisp/geiser-company.el | |
parent | 4489b833985e1f9727bd6a40ea42dd5025dc41fa (diff) | |
download | geiser-773a5037fa401907ae548c53a165bcb4ba7a4c1d.tar.gz geiser-773a5037fa401907ae548c53a165bcb4ba7a4c1d.tar.bz2 |
First stab at using Emacs' standard completion mechanism
Besides removing code i didn't understand that well, we bring in
goodies such as partial completion. Jolly.
Diffstat (limited to 'elisp/geiser-company.el')
-rw-r--r-- | elisp/geiser-company.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elisp/geiser-company.el b/elisp/geiser-company.el index 8bb3c16..eadce93 100644 --- a/elisp/geiser-company.el +++ b/elisp/geiser-company.el @@ -26,7 +26,7 @@ (defvar geiser-company--autodoc-flag nil)) (defsubst geiser-company--candidates (prefix module) - (car (geiser-completion--complete prefix module))) + (geiser-completion--complete prefix module)) (defsubst geiser-company--doc (id module) (ignore-errors |