diff options
author | Alex Kost <alezost@gmail.com> | 2015-11-27 16:07:20 +0300 |
---|---|---|
committer | Alex Kost <alezost@gmail.com> | 2015-12-06 12:46:10 +0300 |
commit | a65f0075244cb0c2422e13419a3094baf0ae6f24 (patch) | |
tree | b3e2a7c2b59595d407b909308a5c160e371756f2 /emacs/guix-emacs.el | |
parent | c67e344f21fda2bf5a2a377a34d4749a1c7e7c9c (diff) | |
download | gnu-guix-a65f0075244cb0c2422e13419a3094baf0ae6f24.tar gnu-guix-a65f0075244cb0c2422e13419a3094baf0ae6f24.tar.gz |
emacs: 'guix-emacs-load-autoloads' takes a profile.
* emacs/guix-emacs.el (guix-emacs-load-autoloads): Use 'profile'
as an optional argument.
(guix-emacs-load-autoloads-maybe): Adjust accordingly.
* emacs/guix-init.el: Likewise.
Diffstat (limited to 'emacs/guix-emacs.el')
-rw-r--r-- | emacs/guix-emacs.el | 36 |
1 files changed, 20 insertions, 16 deletions
diff --git a/emacs/guix-emacs.el b/emacs/guix-emacs.el index 0e3e8c211c..6515b3dc30 100644 --- a/emacs/guix-emacs.el +++ b/emacs/guix-emacs.el @@ -74,29 +74,33 @@ Return nil if there are no emacs packages installed in PROFILE." nil))) ;;;###autoload -(defun guix-emacs-load-autoloads (&optional all) - "Load autoloads for Emacs packages installed in a user profile. -Add autoloads directories to `load-path'. -If ALL is nil, activate only those packages that were installed -after the last activation, otherwise activate all Emacs packages -installed in `guix-user-profile'." - (interactive "P") - (let* ((autoloads (guix-emacs-find-autoloads)) - (files (if all - autoloads - (cl-nset-difference autoloads guix-emacs-autoloads - :test #'string=)))) - (dolist (file files) - (cl-pushnew (file-name-directory file) load-path +(defun guix-emacs-load-autoloads (&optional profile) + "Load autoloads for Emacs packages installed in PROFILE. +If PROFILE is nil, use `guix-user-profile'. +Add autoloads directories to `load-path'." + (interactive (list (guix-profile-prompt))) + (let* ((autoloads (guix-emacs-find-autoloads profile)) + (new-autoloads (cl-nset-difference autoloads + guix-emacs-autoloads + :test #'string=))) + (dolist (file new-autoloads) + (cl-pushnew (directory-file-name (file-name-directory file)) + load-path :test #'string=) (load file 'noerror)) - (setq guix-emacs-autoloads autoloads))) + (setq guix-emacs-autoloads + (append new-autoloads guix-emacs-autoloads)))) (defun guix-emacs-load-autoloads-maybe () "Load autoloads for Emacs packages if needed. See `guix-emacs-activate-after-operation' for details." (and guix-emacs-activate-after-operation - (guix-emacs-load-autoloads))) + ;; FIXME Since a user can work with a non-current profile (using + ;; C-u before `guix-search-by-name' and other commands), emacs + ;; packages can be installed to another profile, and the + ;; following code will not work (i.e., the autoloads for this + ;; profile will not be loaded). + (guix-emacs-load-autoloads guix-current-profile))) (provide 'guix-emacs) |