1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
From: Sean Whitton <spwhitton@spwhitton.name>
Date: Sat, 26 Oct 2019 13:03:21 -0700
Subject: helm-easymenu.el: autoload the easy-menu-add-item call
Otherwise, the autoloaded easy-menu-add-item call in helm-org.el
cannot succeed.
Closes: #943371
Reported-by: Aaron M. Ucko <ucko@debian.org>
Forwarded: not-needed
---
helm-easymenu.el | 1 +
1 file changed, 1 insertion(+)
diff --git a/helm-easymenu.el b/helm-easymenu.el
index 03b7d16..de175af 100644
--- a/helm-easymenu.el
+++ b/helm-easymenu.el
@@ -19,6 +19,7 @@
(require 'easymenu)
+;;;###autoload
(easy-menu-add-item
nil '("Tools")
'("Helm"
|