than their absolute file name.
2014-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
+ * epg-config.el (epg-gpg-program): Use the plain program names rather
+ than their absolute file name.
+
* subr.el (track-mouse): New macro.
* emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
Remove track-mouse case.
:group 'data
:group 'external)
-(defcustom epg-gpg-program (or (executable-find "gpg")
- (executable-find "gpg2")
- "gpg")
+(defcustom epg-gpg-program (cond ((executable-find "gpg") "gpg")
+ ((executable-find "gpg2") "gpg2")
+ (t "gpg"))
"The `gpg' executable."
:group 'epg
:type 'string)