From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1690558-garchives=archives.gentoo.org@lists.gentoo.org> 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 3E1AA158042 for <garchives@archives.gentoo.org>; Sat, 16 Nov 2024 16:20:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 69504E07EF; Sat, 16 Nov 2024 16:20:19 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 5583CE07EF for <gentoo-commits@lists.gentoo.org>; Sat, 16 Nov 2024 16:20:19 +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 707B2342F64 for <gentoo-commits@lists.gentoo.org>; Sat, 16 Nov 2024 16:20:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CED1E18DD for <gentoo-commits@lists.gentoo.org>; Sat, 16 Nov 2024 16:20:16 +0000 (UTC) From: "Ulrich Müller" <ulm@gentoo.org> 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" <ulm@gentoo.org> Message-ID: <1731774010.f3adafc99e9e476803e606c5d24db5e672352520.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/flycheck-package/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/flycheck-package/files/50flycheck-package-gentoo.el X-VCS-Directories: app-emacs/flycheck-package/files/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: f3adafc99e9e476803e606c5d24db5e672352520 X-VCS-Branch: master Date: Sat, 16 Nov 2024 16:20:16 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a8b5636b-f3a9-4056-8cc8-a6a523d8f9a1 X-Archives-Hash: b49ccc37c436852d5a21ca28fc2b61b2 commit: f3adafc99e9e476803e606c5d24db5e672352520 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Sat Nov 16 16:14:21 2024 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Sat Nov 16 16:20:10 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3adafc9 app-emacs/flycheck-package: Pass function to eval-after-load in site-init Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> app-emacs/flycheck-package/files/50flycheck-package-gentoo.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-emacs/flycheck-package/files/50flycheck-package-gentoo.el b/app-emacs/flycheck-package/files/50flycheck-package-gentoo.el index 834c2c4d32fe..5a0ea1500e24 100644 --- a/app-emacs/flycheck-package/files/50flycheck-package-gentoo.el +++ b/app-emacs/flycheck-package/files/50flycheck-package-gentoo.el @@ -1,4 +1,4 @@ (add-to-list 'load-path "@SITELISP@") (autoload 'flycheck-package-setup "flycheck-package" "Setup flycheck-package." t nil) -(eval-after-load 'flycheck '(flycheck-package-setup)) +(eval-after-load 'flycheck #'flycheck-package-setup)