From 0501ea9c2caf6a757f01a850e84d48bcbb90c3b7 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 19 Jun 2018 12:00:40 +0200 Subject: [PATCH] Fix auth-source-pass & password-store autoloads They were marked as macros, but aren't macros! This may fix #696 --- modules/tools/password-store/autoload.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/tools/password-store/autoload.el b/modules/tools/password-store/autoload.el index b16244bc3..14b644ee8 100644 --- a/modules/tools/password-store/autoload.el +++ b/modules/tools/password-store/autoload.el @@ -32,7 +32,7 @@ ;; API ;; -;;;###autoload (autoload 'auth-source-pass-parse-entry "auth-source-pass" nil nil t) +;;;###autoload (autoload 'auth-source-pass-parse-entry "auth-source-pass") ;;;###autoload (defalias '+pass-get-entry #'auth-source-pass-parse-entry) @@ -64,8 +64,8 @@ search of your username. May prompt for your gpg passphrase." ;; Commands ;; -;;;###autoload (autoload 'password-store-list "pass" nil nil t) -;;;###autoload (autoload 'password-store--completing-read "password-store" nil nil t) +;;;###autoload (autoload 'password-store-list "password-store") +;;;###autoload (autoload 'password-store--completing-read "password-store") ;;;###autoload (defun +pass/edit-entry (entry)