From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Kost Subject: Re: [PATCH] emacs: Honor 'geiser-guile-load-path' Date: Thu, 20 Nov 2014 10:08:28 +0300 Message-ID: <8761eal577.fsf@gmail.com> References: <87d28j1qzs.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39669) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XrLr7-0006ov-Nd for guix-devel@gnu.org; Thu, 20 Nov 2014 02:08:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XrLqy-0003n7-Nn for guix-devel@gnu.org; Thu, 20 Nov 2014 02:08:41 -0500 In-Reply-To: <87d28j1qzs.fsf@gnu.org> ("Ludovic \=\?utf-8\?Q\?Court\=C3\=A8s\=22'\?\= \=\?utf-8\?Q\?s\?\= message of "Wed, 19 Nov 2014 10:25:43 +0100") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Ludovic =?utf-8?Q?Court=C3=A8s?= Cc: guix-devel@gnu.org Ludovic Court=C3=A8s (2014-11-19 12:25 +0300) wrote: > I found that guix.el would override my =E2=80=98geiser-guile-load-path=E2= =80=99 > settings. This patch fixes that. OK to apply? > > Thanks, > Ludo=E2=80=99. > > 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! --=20 Alex