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'.
This commit is contained in:
parent
56215e4154
commit
bb38ece458
|
@ -141,7 +141,8 @@ that it finds source files from your checkout:
|
||||||
|
|
||||||
@lisp
|
@lisp
|
||||||
;; @r{Assuming the Guix checkout is in ~/src/guix.}
|
;; @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
|
@end lisp
|
||||||
|
|
||||||
To actually edit the code, Emacs already has a neat Scheme mode. But in
|
To actually edit the code, Emacs already has a neat Scheme mode. But in
|
||||||
|
|
Loading…
Reference in New Issue