commit: 0ce3ed1123af82ba6fe1c32c4849bd12779868f5 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Sat Nov 16 13:03:25 2024 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Sat Nov 16 13:30:40 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ce3ed11
app-emacs/nxml-libvirt-schemas: Use with-eval-after-load in site-init Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> .../nxml-libvirt-schemas/files/60nxml-libvirt-schemas-gentoo.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app-emacs/nxml-libvirt-schemas/files/60nxml-libvirt-schemas-gentoo.el b/app-emacs/nxml-libvirt-schemas/files/60nxml-libvirt-schemas-gentoo.el index c574746e6576..820ca359840a 100644 --- a/app-emacs/nxml-libvirt-schemas/files/60nxml-libvirt-schemas-gentoo.el +++ b/app-emacs/nxml-libvirt-schemas/files/60nxml-libvirt-schemas-gentoo.el @@ -1,5 +1,5 @@ ;; This must be executed after rng-schema-locating-files ;; is set in rng-loc (which is part of nxml-mode). -(eval-after-load "rng-loc" - '(add-to-list 'rng-schema-locating-files - "@SITEETC@/schemas.xml")) +(with-eval-after-load "rng-loc" + (add-to-list 'rng-schema-locating-files + "@SITEETC@/schemas.xml"))
