>From a7b4af5d3115d6caa9129cdf8a9933f640742063 Mon Sep 17 00:00:00 2001 From: Alex Kost Date: Sat, 14 Nov 2015 21:13:07 +0300 Subject: [PATCH] doc: Fix 'geiser-guile-load-path' example. Reported by marusich on #guix. * doc/contributing.texi (The Perfect Setup): Wrap modifying 'geiser-guile-load-path' into 'with-eval-after-load'. --- doc/contributing.texi | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/contributing.texi b/doc/contributing.texi index cdc3f6d..55b844a 100644 --- a/doc/contributing.texi +++ b/doc/contributing.texi @@ -141,7 +141,8 @@ that it finds source files from your checkout: @lisp ;; @r{Assuming the Guix checkout is in ~/src/guix.} -(add-to-list 'geiser-guile-load-path "~/src/guix") +(with-eval-after-load 'geiser-guile + (add-to-list 'geiser-guile-load-path "~/src/guix")) @end lisp To actually edit the code, Emacs already has a neat Scheme mode. But in -- 2.6.1