diff options
author | Jonas Bernoulli <jonas@bernoul.li> | 2020-02-18 16:42:20 +0100 |
---|---|---|
committer | Jonas Bernoulli <jonas@bernoul.li> | 2020-08-13 11:30:16 +0200 |
commit | c5b9d2a4b46c6da7d5c88a8c51be5294b2d5edc9 (patch) | |
tree | bbf9766ac030de9573e49a3f2862d9e4386ca03a /lisp/epg-config.el | |
parent | 562bbd0a367b8d4239215c70f8548fed5ab47bac (diff) | |
download | emacs-c5b9d2a4b46c6da7d5c88a8c51be5294b2d5edc9.tar.gz emacs-c5b9d2a4b46c6da7d5c88a8c51be5294b2d5edc9.tar.bz2 emacs-c5b9d2a4b46c6da7d5c88a8c51be5294b2d5edc9.zip |
Split EasyPG libraries into outline sections
* lisp/epa-dired.el:
lisp/epa-file.el:
lisp/epa-hook.el:
lisp/epa-mail.el:
lisp/epa.el:
lisp/epg-config.el:
lisp/epg.el: Split into outline sections.
* lisp/epg.el (epg-error): Move definition.
Diffstat (limited to 'lisp/epg-config.el')
-rw-r--r-- | lisp/epg-config.el | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lisp/epg-config.el b/lisp/epg-config.el index 1c429246529..9f0c7e4c509 100644 --- a/lisp/epg-config.el +++ b/lisp/epg-config.el @@ -22,6 +22,7 @@ ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. ;;; Code: +;;; Prelude (eval-when-compile (require 'cl-lib)) @@ -34,6 +35,8 @@ (define-obsolete-variable-alias 'epg-bug-report-address 'report-emacs-bug-address "27.1") +;;; Options + (defgroup epg () "Interface to the GNU Privacy Guard (GnuPG)." :tag "EasyPG" @@ -106,6 +109,8 @@ through the minibuffer, instead of external Pinentry program." Note that the buffer name starts with a space." :type 'boolean) +;;; Constants + (defconst epg-gpg-minimum-version "1.4.3") (defconst epg-gpg2-minimum-version "2.1.6") @@ -133,6 +138,8 @@ The first element of each entry is protocol symbol, which is either `OpenPGP' or `CMS'. The second element is a function which constructs a configuration object (actually a plist).") +;;; "Configuration" + (defvar epg--configurations nil) ;;;###autoload |