diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-12-28 16:25:52 +0100 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-12-28 16:25:52 +0100 |
commit | 8982bb6bb2afce626cd60533cb582ae88259a402 (patch) | |
tree | 3f60f6a23c9be1e368a64115831404d2c54d2fcf /elisp/geiser-compile.el | |
parent | 466b8f71a7d6375f55b2806fb949a91d774147c6 (diff) | |
download | geiser-guile-8982bb6bb2afce626cd60533cb582ae88259a402.tar.gz geiser-guile-8982bb6bb2afce626cd60533cb582ae88259a402.tar.bz2 |
Leaner autodoc cache
We cannot consistently maintain a local cache, because of
re-evaluations of external symbols will go unnoticed. The new strategy
(remembering only the latest signatures) mostly works, although it
introduces a bit of extra flickering every now and then.
A global cache is perhaps worth considering.
Diffstat (limited to 'elisp/geiser-compile.el')
-rw-r--r-- | elisp/geiser-compile.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elisp/geiser-compile.el b/elisp/geiser-compile.el index f59f9e5..bc9aace 100644 --- a/elisp/geiser-compile.el +++ b/elisp/geiser-compile.el @@ -39,7 +39,7 @@ (path (cdr b/p)) (msg (format "%s %s ..." msg path))) (message msg) - (geiser-autodoc--clean-cache t) + (geiser-autodoc--clean-cache) (geiser-compile--display-result msg (geiser-eval--send/wait `(,(if compile-p :comp-file :load-file) ,path))))) |