summaryrefslogtreecommitdiff
path: root/elisp/geiser-compile.el
diff options
context:
space:
mode:
authorJose Antonio Ortega Ruiz <jao@gnu.org>2016-06-11 18:37:36 +0200
committerJose Antonio Ortega Ruiz <jao@gnu.org>2016-06-11 18:37:36 +0200
commitae6689f1de9bd43af9c096c7eae66f40d4d8cd8a (patch)
treea22cc5b34da6130a7566d282015cfe9733358db6 /elisp/geiser-compile.el
parentd8cb36651aa628075df494c0a1515d98d5a75adf (diff)
downloadgeiser-guile-ae6689f1de9bd43af9c096c7eae66f40d4d8cd8a.tar.gz
geiser-guile-ae6689f1de9bd43af9c096c7eae66f40d4d8cd8a.tar.bz2
Cleanups to the show/jump debug buffer mess
Let's see if i finally got this right...
Diffstat (limited to 'elisp/geiser-compile.el')
-rw-r--r--elisp/geiser-compile.el9
1 files changed, 4 insertions, 5 deletions
diff --git a/elisp/geiser-compile.el b/elisp/geiser-compile.el
index 521803e..26aad16 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, 2010, 2011, 2012, 2013 Jose Antonio Ortega Ruiz
+;; Copyright (C) 2009, 2010, 2011, 2012, 2013, 2016 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
@@ -37,12 +37,11 @@
(let* ((b/p (geiser-compile--buffer/path path))
(buffer (car b/p))
(path (cdr b/p))
- (msg (format "%s %s ..." msg path)))
+ (msg (format "%s %s ..." msg path))
+ (code `(,(if compile-p :comp-file :load-file) ,path)))
(message msg)
(geiser-autodoc--clean-cache)
- (geiser-compile--display-result
- msg (geiser-eval--send/wait
- `(,(if compile-p :comp-file :load-file) ,path)))))
+ (geiser-compile--display-result msg (geiser-eval--send/wait code))))
;;; User commands: