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 73CAD15807B for ; Sat, 16 Nov 2024 17:40:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 93930E0833; Sat, 16 Nov 2024 17:40:21 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 64A73E0833 for ; Sat, 16 Nov 2024 17:40:21 +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 99BD7335D77 for ; Sat, 16 Nov 2024 17:40:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E23AC1F0B 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: <1731778790.3eef0d89a54bfd6138c8724041d67f9e1905b561.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/actionscript-mode/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/actionscript-mode/files/50actionscript-mode-gentoo.el X-VCS-Directories: app-emacs/actionscript-mode/files/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 3eef0d89a54bfd6138c8724041d67f9e1905b561 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: b2f9ceaa-b33e-4703-8db3-19fbb00b8a80 X-Archives-Hash: cdf3faa2a734f62f809cbacd365bcd04 commit: 3eef0d89a54bfd6138c8724041d67f9e1905b561 Author: Ulrich Müller gentoo org> AuthorDate: Sat Nov 16 17:04:38 2024 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat Nov 16 17:39:50 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3eef0d89 app-emacs/actionscript-mode: Use feature instead of filename in site-init Signed-off-by: Ulrich Müller gentoo.org> app-emacs/actionscript-mode/files/50actionscript-mode-gentoo.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app-emacs/actionscript-mode/files/50actionscript-mode-gentoo.el b/app-emacs/actionscript-mode/files/50actionscript-mode-gentoo.el index 9bbcc97ed522..15c1aa9352c8 100644 --- a/app-emacs/actionscript-mode/files/50actionscript-mode-gentoo.el +++ b/app-emacs/actionscript-mode/files/50actionscript-mode-gentoo.el @@ -2,4 +2,5 @@ (autoload 'actionscript-mode "actionscript-mode" "Major mode for editing Actionscript files." t) (add-to-list 'auto-mode-alist '("\\.as\\'" . actionscript-mode)) -(with-eval-after-load "actionscript-mode" (load "actionscript-config")) +;; we cannot use require because the file doesn't provide the feature +(with-eval-after-load 'actionscript-mode (load "actionscript-config"))