[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] emacs: Honor 'geiser-guile-load-path'
From: |
Ludovic Courtès |
Subject: |
[PATCH] emacs: Honor 'geiser-guile-load-path' |
Date: |
Wed, 19 Nov 2014 10:25:43 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.4 (gnu/linux) |
I found that guix.el would override my ‘geiser-guile-load-path’
settings. This patch fixes that. OK to apply?
Thanks,
Ludo’.
diff --git a/emacs/guix-backend.el b/emacs/guix-backend.el
index 6537888..a320eae 100644
--- a/emacs/guix-backend.el
+++ b/emacs/guix-backend.el
@@ -206,7 +206,8 @@ 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 (list guix-load-path))
+ (geiser-guile-load-path (cons guix-load-path
+ geiser-guile-load-path))
(geiser-repl-startup-time guix-repl-startup-time))
(with-current-buffer buffer
(geiser-repl-mode)
- [PATCH] emacs: Honor 'geiser-guile-load-path',
Ludovic Courtès <=