From: Glenn Morris Date: Sun, 12 Mar 2017 01:22:56 +0000 (-0800) Subject: Remove trivial duplication in epg-config X-Git-Tag: emacs-26.0.90~591 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3175b5353375ca356866cef2c2bed8c058ffda18;p=emacs.git Remove trivial duplication in epg-config * lisp/epg-config.el (epg-config--program-alist): Use epg-gpg-minimum-version. --- 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")))