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:
André A. Gomes 2022-05-21 14:42:12 +01:00 committed by 宋文武
parent 0ff99893bd
commit fab316f7ec
No known key found for this signature in database
GPG Key ID: D415BF253B515976

View File

@ -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