emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/geiser-guile b3d0caa 259/284: Bug fix: expanding file name


From: Philip Kaludercic
Subject: [nongnu] elpa/geiser-guile b3d0caa 259/284: Bug fix: expanding file name at the right time
Date: Sun, 1 Aug 2021 18:29:56 -0400 (EDT)

branch: elpa/geiser-guile
commit b3d0caa7e3d4d7eed9233d10b6119d49ca18ec8f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Commit: Jose Antonio Ortega Ruiz <jao@gnu.org>

    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

[Prev in Thread] Current Thread [Next in Thread]