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 267A3158042 for ; Sat, 16 Nov 2024 13:30:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 59145E0841; Sat, 16 Nov 2024 13:30:52 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3E264E0841 for ; Sat, 16 Nov 2024 13:30:52 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4EF97340DE6 for ; Sat, 16 Nov 2024 13:30:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B7B2BD81 for ; Sat, 16 Nov 2024 13:30:49 +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: <1731763839.da77eb7137613c25487baf432cdc7ef784cbd599.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/nxml-docbook5-schemas/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/nxml-docbook5-schemas/files/60nxml-docbook5-schemas-gentoo.el X-VCS-Directories: app-emacs/nxml-docbook5-schemas/files/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: da77eb7137613c25487baf432cdc7ef784cbd599 X-VCS-Branch: master Date: Sat, 16 Nov 2024 13:30:49 +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: 47f74ea8-997e-40c1-a844-dfcddc82454c X-Archives-Hash: 5feebbf01b8e79d16db33198178ed2d9 commit: da77eb7137613c25487baf432cdc7ef784cbd599 Author: Ulrich Müller gentoo org> AuthorDate: Sat Nov 16 13:03:15 2024 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat Nov 16 13:30:39 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da77eb71 app-emacs/nxml-docbook5-schemas: Use with-eval-after-load in site-init Signed-off-by: Ulrich Müller gentoo.org> .../nxml-docbook5-schemas/files/60nxml-docbook5-schemas-gentoo.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app-emacs/nxml-docbook5-schemas/files/60nxml-docbook5-schemas-gentoo.el b/app-emacs/nxml-docbook5-schemas/files/60nxml-docbook5-schemas-gentoo.el index c574746e6576..820ca359840a 100644 --- a/app-emacs/nxml-docbook5-schemas/files/60nxml-docbook5-schemas-gentoo.el +++ b/app-emacs/nxml-docbook5-schemas/files/60nxml-docbook5-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"))