branch: elpa/geiser-guile
commit b3d0caa7e3d4d7eed9233d10b6119d49ca18ec8f
Author: Jose Antonio Ortega Ruiz <[email protected]>
Commit: Jose Antonio Ortega Ruiz <[email protected]>

    Bug fix: expanding file name at the right time
    
    We were expanding the path of files to be loaded at the wrong place in
    the wrong way.  This should be better and address bug #196.
---
 elisp/geiser-guile.el | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/elisp/geiser-guile.el b/elisp/geiser-guile.el
index 0b71edf..dacca55 100644
--- a/elisp/geiser-guile.el
+++ b/elisp/geiser-guile.el
@@ -158,8 +158,7 @@ This function uses `geiser-guile-init-file' if it exists."
                             (or (car args) "#f")
                             (geiser-guile--linearize-args (cdr args))
                             (if (cddr args) "" " ()")))
-    ((load-file compile-file)
-     (format ",geiser-load-file %s" (expand-file-name (car args))))
+    ((load-file compile-file) (format ",geiser-load-file %s" (car args)))
     ((no-values) ",geiser-no-values")
     (t (format "ge:%s (%s)" proc (geiser-guile--linearize-args args)))))
 

Reply via email to