summaryrefslogtreecommitdiff
path: root/geiser/emacs.scm
diff options
context:
space:
mode:
authorJose Antonio Ortega Ruiz <jao@gnu.org>2009-02-21 04:46:14 +0100
committerJose Antonio Ortega Ruiz <jao@gnu.org>2009-02-21 04:46:14 +0100
commit49842df2405472ad6f9164d47d7eb4f5f3c423b9 (patch)
tree43f12ba2eda6c3cbd2cc4ad0899e56ec87e48d71 /geiser/emacs.scm
parent8db792033cbb976ddfd742e6506cbae8953c475b (diff)
downloadgeiser-guile-49842df2405472ad6f9164d47d7eb4f5f3c423b9.tar.gz
geiser-guile-49842df2405472ad6f9164d47d7eb4f5f3c423b9.tar.bz2
Correct stack in load/compile file retorts.
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