From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4D35B158042 for ; Sat, 16 Nov 2024 12:59:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8EF73E086A; Sat, 16 Nov 2024 12:59:25 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6FC47E086A for ; Sat, 16 Nov 2024 12:59:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8678D342F64 for ; Sat, 16 Nov 2024 12:59:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 262781626 for ; Sat, 16 Nov 2024 12:59:23 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1731761941.5f9b43c98f7bfda1a19b86937b25a735027ef3cf.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/nxml-gentoo-schemas/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/nxml-gentoo-schemas/files/60nxml-gentoo-schemas-gentoo.el X-VCS-Directories: app-emacs/nxml-gentoo-schemas/files/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 5f9b43c98f7bfda1a19b86937b25a735027ef3cf X-VCS-Branch: master Date: Sat, 16 Nov 2024 12:59:23 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 77bba917-56e9-4057-81fc-3658b15a1fa8 X-Archives-Hash: 6d8625cab77b2a04af7f3cb8a2a3d2ae commit: 5f9b43c98f7bfda1a19b86937b25a735027ef3cf Author: Ulrich Müller gentoo org> AuthorDate: Sat Nov 16 12:56:37 2024 +0000 Commit: Ulrich Müller gentoo 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 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"))