summaryrefslogtreecommitdiff
path: root/elisp/geiser-compile.el
diff options
context:
space:
mode:
authorJose Antonio Ortega Ruiz <jao@gnu.org>2010-12-28 16:25:52 +0100
committerJose Antonio Ortega Ruiz <jao@gnu.org>2010-12-28 16:25:52 +0100
commit8982bb6bb2afce626cd60533cb582ae88259a402 (patch)
tree3f60f6a23c9be1e368a64115831404d2c54d2fcf /elisp/geiser-compile.el
parent466b8f71a7d6375f55b2806fb949a91d774147c6 (diff)
downloadgeiser-chez-8982bb6bb2afce626cd60533cb582ae88259a402.tar.gz
geiser-chez-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.el2
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)))))