summaryrefslogtreecommitdiff
path: root/helm-misc.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thievol@posteo.net>2020-10-04 11:48:46 +0200
committerThierry Volpiatto <thievol@posteo.net>2020-10-04 11:48:46 +0200
commit51de5f7a537eb1545d98f24fc0d72c123d2f0c03 (patch)
tree8c4a3053d659753667fee1a5de9880f3dd5924a8 /helm-misc.el
parentd30c025c942b7cba33f8f9bdc9622b742beaa442 (diff)
Fix requirement and declarations for epa/epg
Diffstat (limited to 'helm-misc.el')
-rw-r--r--helm-misc.el8
1 files changed, 5 insertions, 3 deletions
diff --git a/helm-misc.el b/helm-misc.el
index e8e289d9..70d7abfb 100644
--- a/helm-misc.el
+++ b/helm-misc.el
@@ -328,6 +328,7 @@ Default action change TZ environment variable locally to emacs."
;;; GPG keys
;;
;;
+(eval-when-compile (require 'epg))
(defvar epa-protocol)
(defvar epa-last-coding-system-specified)
(defvar epg-key-validity-alist)
@@ -339,11 +340,12 @@ Default action change TZ environment variable locally to emacs."
(declare-function epg-key-user-id-list "epg")
(declare-function epg-user-id-string "epg")
(declare-function epg-user-id-validity "epg")
-(declare-function epa-sign-region "epg")
-(declare-function epa--read-signature-type "epg")
-(declare-function epa-display-error "epg")
+(declare-function epa-sign-region "epa")
+(declare-function epa--read-signature-type "epa")
+(declare-function epa-display-error "epa")
(declare-function epg-export-keys-to-string "epg")
(declare-function epg-context-armor "epg")
+(declare-function epg-context-set-armor "epg")
(defvar helm-epa--list-only-secrets nil
"[INTERNAL] Used to pass MODE argument to `epg-list-keys'.")