diff options
author | Alex Kost <alezost@gmail.com> | 2014-11-26 23:07:16 +0300 |
---|---|---|
committer | Alex Kost <alezost@gmail.com> | 2014-11-26 23:07:16 +0300 |
commit | cbbc8771346513e1ea05d9a1d3af5d8d35ed284f (patch) | |
tree | 4043e714983d539dafcc221b84adb2b39ebc1a5f /emacs/guix-helper.scm.in | |
parent | d57b88bed58566b53bca8435d9e1b5d7e691dbce (diff) | |
download | gnu-guix-cbbc8771346513e1ea05d9a1d3af5d8d35ed284f.tar gnu-guix-cbbc8771346513e1ea05d9a1d3af5d8d35ed284f.tar.gz |
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'.
Diffstat (limited to 'emacs/guix-helper.scm.in')
-rw-r--r-- | emacs/guix-helper.scm.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/emacs/guix-helper.scm.in b/emacs/guix-helper.scm.in index 554d55119f..0bbd36be21 100644 --- a/emacs/guix-helper.scm.in +++ b/emacs/guix-helper.scm.in @@ -50,6 +50,7 @@ (and=> (getenv "HOME") (cut string-append <> "/.config"))) (cut string-append <> "/guix/latest")))) + (push! module-dir %load-path) (push! module-dir %load-compiled-path) (if (and updates-dir (file-exists? updates-dir)) (begin |