[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] emacs: Honor 'geiser-guile-load-path'
From: |
Alex Kost |
Subject: |
Re: [PATCH] emacs: Honor 'geiser-guile-load-path' |
Date: |
Thu, 20 Nov 2014 10:08:28 +0300 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.4 (gnu/linux) |
Ludovic Courtès (2014-11-19 12:25 +0300) wrote:
> 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)
Sure!
--
Alex