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 3CB17158042 for ; Sat, 16 Nov 2024 17:40:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 70356E0829; Sat, 16 Nov 2024 17:40:20 +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 57EE2E0829 for ; Sat, 16 Nov 2024 17:40:20 +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 64722342FAB for ; Sat, 16 Nov 2024 17:40:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BB3711E74 for ; Sat, 16 Nov 2024 17:40:17 +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: <1731778788.4dc50b77db79d5ddb2b8a1049c51a4cbefe837a7.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/nxml-libvirt-schemas/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/nxml-libvirt-schemas/files/60nxml-libvirt-schemas-gentoo.el X-VCS-Directories: app-emacs/nxml-libvirt-schemas/files/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 4dc50b77db79d5ddb2b8a1049c51a4cbefe837a7 X-VCS-Branch: master Date: Sat, 16 Nov 2024 17:40:17 +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: 17e50e25-0d18-4e38-ac5b-857d1edb21fb X-Archives-Hash: f9647e42a6942d5f8f2ded63be029f39 commit: 4dc50b77db79d5ddb2b8a1049c51a4cbefe837a7 Author: Ulrich Müller gentoo org> AuthorDate: Sat Nov 16 17:01:59 2024 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat Nov 16 17:39:48 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4dc50b77 app-emacs/nxml-libvirt-schemas: Use feature instead of filename in site-init Signed-off-by: Ulrich Müller gentoo.org> app-emacs/nxml-libvirt-schemas/files/60nxml-libvirt-schemas-gentoo.el | 4 ++-- 1 file changed, 2 insertions(+), 2 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 820ca359840a..ac768184362c 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). -(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"))