* [gentoo-commits] repo/gentoo:master commit in: app-emacs/nxml-gentoo-schemas/files/
@ 2024-11-16 12:59 Ulrich Müller
0 siblings, 0 replies; 2+ messages in thread
From: Ulrich Müller @ 2024-11-16 12:59 UTC (permalink / raw
To: gentoo-commits
commit: 5f9b43c98f7bfda1a19b86937b25a735027ef3cf
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 16 12:56:37 2024 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sat Nov 16 12:59:01 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f9b43c9
app-emacs/nxml-gentoo-schemas: Use with-eval-after-load
Instead of eval-after-load. This is recommended since Emacs 24.
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
app-emacs/nxml-gentoo-schemas/files/60nxml-gentoo-schemas-gentoo.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/app-emacs/nxml-gentoo-schemas/files/60nxml-gentoo-schemas-gentoo.el b/app-emacs/nxml-gentoo-schemas/files/60nxml-gentoo-schemas-gentoo.el
index c574746e6576..820ca359840a 100644
--- a/app-emacs/nxml-gentoo-schemas/files/60nxml-gentoo-schemas-gentoo.el
+++ b/app-emacs/nxml-gentoo-schemas/files/60nxml-gentoo-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"))
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/nxml-gentoo-schemas/files/
@ 2024-11-16 17:40 Ulrich Müller
0 siblings, 0 replies; 2+ messages in thread
From: Ulrich Müller @ 2024-11-16 17:40 UTC (permalink / raw
To: gentoo-commits
commit: 6d7d72d37576b0d6daf5857e279afc2f87fb5dac
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 16 17:01:29 2024 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sat Nov 16 17:39:46 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d7d72d3
app-emacs/nxml-gentoo-schemas: Use feature instead of filename in site-init
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
app-emacs/nxml-gentoo-schemas/files/60nxml-gentoo-schemas-gentoo.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-emacs/nxml-gentoo-schemas/files/60nxml-gentoo-schemas-gentoo.el b/app-emacs/nxml-gentoo-schemas/files/60nxml-gentoo-schemas-gentoo.el
index 820ca359840a..ac768184362c 100644
--- a/app-emacs/nxml-gentoo-schemas/files/60nxml-gentoo-schemas-gentoo.el
+++ b/app-emacs/nxml-gentoo-schemas/files/60nxml-gentoo-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).
-(with-eval-after-load "rng-loc"
+(with-eval-after-load 'rng-loc
(add-to-list 'rng-schema-locating-files
- "@SITEETC@/schemas.xml"))
+ "@SITEETC@/schemas.xml"))
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-11-16 17:40 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-16 17:40 [gentoo-commits] repo/gentoo:master commit in: app-emacs/nxml-gentoo-schemas/files/ Ulrich Müller
-- strict thread matches above, loose matches on Subject: below --
2024-11-16 12:59 Ulrich Müller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox