* lisp/epg-config.el (epg-gpg-program): Prefer gpg2 over gpg, if
it exists. This fixes many problems with using the GPG
authentication agent.
respectively, `show-paren-when-point-inside-paren' or
`show-paren-when-point-in-periphery'.
+---
+** If gpg2 exists on the system, it is now used as the default value
+of `epg-gpg-program' (instead of gpg).
+
** Lisp mode
---
:group 'data
:group 'external)
-(defcustom epg-gpg-program (cond ((executable-find "gpg") "gpg")
- ((executable-find "gpg2") "gpg2")
- (t "gpg"))
+(defcustom epg-gpg-program (if (executable-find "gpg2")
+ "gpg2"
+ "gpg")
"The `gpg' executable."
+ :version "25.1"
:group 'epg
:type 'string)