summaryrefslogtreecommitdiff
path: root/geiser/emacs.scm
diff options
context:
space:
mode:
Diffstat (limited to 'geiser/emacs.scm')
-rw-r--r--geiser/emacs.scm8
1 files changed, 5 insertions, 3 deletions
diff --git a/geiser/emacs.scm b/geiser/emacs.scm
index 147af7c..b9e2d67 100644
--- a/geiser/emacs.scm
+++ b/geiser/emacs.scm
@@ -112,11 +112,13 @@ SUBR, MSG and REST."
(define (ge:compile-file path)
"Compile and load file, given its full @var{path}."
- (and (compile-file path)
- (load-compiled (compiled-file-name path))))
+ (evaluate `(and (compile-file ,path)
+ (load-compiled ,(compiled-file-name path)))
+ '(geiser emacs)
+ eval))
(define (ge:load-file path)
"Load file, given its full @var{path}."
- (compile-and-load path))
+ (evaluate `(compile-and-load ,path) '(geiser emacs) eval))
;;; emacs.scm ends here