1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-25 10:47:00 +00:00

Remove trivial duplication in epg-config

* lisp/epg-config.el (epg-config--program-alist):
Use epg-gpg-minimum-version.
This commit is contained in:
Glenn Morris 2017-03-11 17:22:56 -08:00
parent cce29d942d
commit 3175b53533

View File

@ -83,9 +83,9 @@ Note that the buffer name starts with a space."
(defconst epg-gpg-minimum-version "1.4.3")
(defconst epg-config--program-alist
'((OpenPGP
`((OpenPGP
epg-gpg-program
("gpg2" . "2.1.6") ("gpg" . "1.4.3"))
("gpg2" . "2.1.6") ("gpg" . ,epg-gpg-minimum-version))
(CMS
epg-gpgsm-program
("gpgsm" . "2.0.4")))