summaryrefslogtreecommitdiff
path: root/elisp/geiser-compile.el
diff options
context:
space:
mode:
authorJose Antonio Ortega Ruiz <jao@gnu.org>2010-09-06 01:50:24 +0200
committerJose Antonio Ortega Ruiz <jao@gnu.org>2010-09-06 01:50:24 +0200
commit43c915add421637b4db12941e6d738b8de46ff7b (patch)
tree53703c04f4b997638c589bdaa1ff960e2471ea0c /elisp/geiser-compile.el
parent6c5ab9fbb37f6691395ddcc8b985819b7809cac4 (diff)
downloadgeiser-chez-43c915add421637b4db12941e6d738b8de46ff7b.tar.gz
geiser-chez-43c915add421637b4db12941e6d738b8de46ff7b.tar.bz2
Autodoc: clean cache upon evaluation
Diffstat (limited to 'elisp/geiser-compile.el')
-rw-r--r--elisp/geiser-compile.el7
1 files changed, 5 insertions, 2 deletions
diff --git a/elisp/geiser-compile.el b/elisp/geiser-compile.el
index 8260b34..41ca4bd 100644
--- a/elisp/geiser-compile.el
+++ b/elisp/geiser-compile.el
@@ -1,6 +1,6 @@
;; geiser-compile.el -- compile/load scheme files
-;; Copyright (C) 2009 Jose Antonio Ortega Ruiz
+;; Copyright (C) 2009, 2010 Jose Antonio Ortega Ruiz
;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the Modified BSD License. You should
@@ -12,6 +12,7 @@
(require 'geiser-debug)
+(require 'geiser-autodoc)
(require 'geiser-eval)
(require 'geiser-base)
@@ -38,8 +39,10 @@
(path (cdr b/p))
(msg (format "%s %s ..." msg path)))
(message msg)
+ (geiser-autodoc--clean-cache)
(geiser-compile--display-result
- msg (geiser-eval--send/wait `(,(if compile-p :comp-file :load-file) ,path)))))
+ msg (geiser-eval--send/wait
+ `(,(if compile-p :comp-file :load-file) ,path)))))
;;; User commands: