mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: emacs: Suppress loading messages for guix emacs packages.
* gnu/packages/aux-files/emacs/guix-emacs.el (guix-emacs-autoload-packages): Pass NOMESSAGE as t for 'load'. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
This commit is contained in:
parent
0ff99893bd
commit
fab316f7ec
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ The files in the list do not have extensions (.el, .elc)."
|
|||
(let ((autoloads (mapcan #'guix-emacs-find-autoloads
|
||||
(guix-emacs--non-core-load-path))))
|
||||
(mapc (lambda (f)
|
||||
(load f 'noerror))
|
||||
(load f 'noerror t))
|
||||
autoloads)))
|
||||
|
||||
;;;###autoload
|
||||
|
|
Loading…
Reference in a new issue