summaryrefslogtreecommitdiff
path: root/lisp/epg-config.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2017-03-11 17:22:56 -0800
committerGlenn Morris <rgm@gnu.org>2017-03-11 17:22:56 -0800
commit3175b5353375ca356866cef2c2bed8c058ffda18 (patch)
tree75afc2b202055aeb0b83aca7370852608b083ec1 /lisp/epg-config.el
parentcce29d942dc62f39664e890fbf210a6568df4594 (diff)
downloademacs-3175b5353375ca356866cef2c2bed8c058ffda18.tar.gz
Remove trivial duplication in epg-config
* lisp/epg-config.el (epg-config--program-alist): Use epg-gpg-minimum-version.
Diffstat (limited to 'lisp/epg-config.el')
-rw-r--r--lisp/epg-config.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/epg-config.el b/lisp/epg-config.el
index 611f984106d..7b963add881 100644
--- a/lisp/epg-config.el
+++ b/lisp/epg-config.el
@@ -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")))