* lisp/epg-config.el (epg-gpg-program): Use the plain program names rather

than their absolute file name.
This commit is contained in:
Stefan Monnier 2014-09-27 12:26:54 -04:00
parent 19e0f0af6d
commit 5551acd251
2 changed files with 6 additions and 3 deletions

View file

@ -1,5 +1,8 @@
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.

View file

@ -39,9 +39,9 @@
: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)