emacs: Add missing directory to the guile load path.
Reported by Adam Pribyl and David Thompson. * emacs/guix-helper.scm.in (set-paths!): Add guile module dir to '%load-path'.
This commit is contained in:
parent
d57b88bed5
commit
cbbc877134
|
@ -50,6 +50,7 @@
|
||||||
(and=> (getenv "HOME")
|
(and=> (getenv "HOME")
|
||||||
(cut string-append <> "/.config")))
|
(cut string-append <> "/.config")))
|
||||||
(cut string-append <> "/guix/latest"))))
|
(cut string-append <> "/guix/latest"))))
|
||||||
|
(push! module-dir %load-path)
|
||||||
(push! module-dir %load-compiled-path)
|
(push! module-dir %load-compiled-path)
|
||||||
(if (and updates-dir (file-exists? updates-dir))
|
(if (and updates-dir (file-exists? updates-dir))
|
||||||
(begin
|
(begin
|
||||||
|
|
Loading…
Reference in New Issue