* lisp/epg-config.el (epg-gpg-program): Use the plain program names rather
than their absolute file name.
This commit is contained in:
parent
19e0f0af6d
commit
5551acd251
2 changed files with 6 additions and 3 deletions
|
@ -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.
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue