diff options
| author | Stefan Monnier | 2014-10-20 17:51:44 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2014-10-20 17:51:44 -0400 |
| commit | 1c9c88b402d46611f550d9ee445cda072b5bc1f4 (patch) | |
| tree | 49c815885b74d9e7efa707cebc780b17cf076ba9 | |
| parent | 290d4b570fb12a5e92c64376f6018637b33e136f (diff) | |
| download | emacs-1c9c88b402d46611f550d9ee445cda072b5bc1f4.tar.gz emacs-1c9c88b402d46611f550d9ee445cda072b5bc1f4.zip | |
* lisp/epg-config.el (epg-gpg-program): Don't use the absolute names by default.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/epg-config.el | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c1a57cf373e..771f2211606 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2014-10-20 Stefan Monnier <monnier@iro.umontreal.ca> | 1 | 2014-10-20 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 2 | ||
| 3 | * epg-config.el (epg-gpg-program): Don't use the absolute names by default. | ||
| 4 | |||
| 3 | * emacs-lisp/bytecomp.el (=, <, >, <=, >=): Don't optimize multi-arg | 5 | * emacs-lisp/bytecomp.el (=, <, >, <=, >=): Don't optimize multi-arg |
| 4 | case (bug#18767). | 6 | case (bug#18767). |
| 5 | 7 | ||
diff --git a/lisp/epg-config.el b/lisp/epg-config.el index 10b37041443..16ed6e1f5c9 100644 --- a/lisp/epg-config.el +++ b/lisp/epg-config.el | |||
| @@ -39,9 +39,9 @@ | |||
| 39 | :group 'data | 39 | :group 'data |
| 40 | :group 'external) | 40 | :group 'external) |
| 41 | 41 | ||
| 42 | (defcustom epg-gpg-program (or (executable-find "gpg") | 42 | (defcustom epg-gpg-program (cond ((executable-find "gpg") "gpg") |
| 43 | (executable-find "gpg2") | 43 | ((executable-find "gpg2") "gpg2") |
| 44 | "gpg") | 44 | (t "gpg")) |
| 45 | "The `gpg' executable." | 45 | "The `gpg' executable." |
| 46 | :group 'epg | 46 | :group 'epg |
| 47 | :type 'string) | 47 | :type 'string) |