summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2024-11-16 17:15:05 +0100
committerUlrich Müller <ulm@gentoo.org>2024-11-16 17:20:11 +0100
commit9f22441ba7e774d6f603170ec5dc3c2a00582a3d (patch)
treebe1456e253ca59974fcbaefc1d6b94453489f948 /app-emacs
parentapp-emacs/flycheck-package: Pass function to eval-after-load in site-init (diff)
downloadgentoo-9f22441ba7e774d6f603170ec5dc3c2a00582a3d.tar.gz
gentoo-9f22441ba7e774d6f603170ec5dc3c2a00582a3d.tar.bz2
gentoo-9f22441ba7e774d6f603170ec5dc3c2a00582a3d.zip
app-emacs/yasnippet-snippets: Pass function to eval-after-load in site-init
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'app-emacs')
-rw-r--r--app-emacs/yasnippet-snippets/files/50yasnippet-snippets-gentoo.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/app-emacs/yasnippet-snippets/files/50yasnippet-snippets-gentoo.el b/app-emacs/yasnippet-snippets/files/50yasnippet-snippets-gentoo.el
index 4c85ffac5510..ffa03fff66ea 100644
--- a/app-emacs/yasnippet-snippets/files/50yasnippet-snippets-gentoo.el
+++ b/app-emacs/yasnippet-snippets/files/50yasnippet-snippets-gentoo.el
@@ -1,5 +1,4 @@
(add-to-list 'load-path "@SITELISP@")
(autoload 'yasnippet-snippets-initialize "yasnippet-snippets"
"Load the `yasnippet-snippets' snippets directory." t)
-(eval-after-load 'yasnippet
- '(yasnippet-snippets-initialize))
+(eval-after-load 'yasnippet #'yasnippet-snippets-initialize)