From 59dc56390d4c34ff891bf86429f69199f5714f95 Mon Sep 17 00:00:00 2001 From: Alex Kost Date: Sun, 22 Nov 2015 23:36:39 +0300 Subject: [PATCH] emacs: Expand 'guix-load-path'. Reported by Mathieu Lirzin at . * emacs/guix-backend.el (guix-start-repl): Expand 'guix-load-path' to avoid a potentially relative directory name in Guile %load-path. --- emacs/guix-backend.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emacs/guix-backend.el b/emacs/guix-backend.el index e7c158bef4..82383e48ff 100644 --- a/emacs/guix-backend.el +++ b/emacs/guix-backend.el @@ -202,7 +202,7 @@ this address (it should be defined by ;; A mix of the code from `geiser-repl--start-repl' and ;; `geiser-repl--to-repl-buffer'. (let ((impl 'guile) - (geiser-guile-load-path (cons guix-load-path + (geiser-guile-load-path (cons (expand-file-name guix-load-path) geiser-guile-load-path)) (geiser-repl-startup-time guix-repl-startup-time)) (with-current-buffer buffer -- 2.20.1