Small epg-find-configuration improvement
* lisp/epg-config.el (epg-find-configuration): Handle epg-gpg-program customized but not saved. (Bug#25947)
This commit is contained in:
parent
46fcaf3361
commit
cce29d942d
1 changed files with 2 additions and 1 deletions
|
@ -129,7 +129,8 @@ version requirement is met."
|
|||
(or (and (not no-cache) (alist-get protocol epg--configurations))
|
||||
;; If the executable value is already set with M-x
|
||||
;; customize, use it without checking.
|
||||
(if (and symbol (get symbol 'saved-value))
|
||||
(if (and symbol (or (get symbol 'saved-value)
|
||||
(get symbol 'customized-value)))
|
||||
(let ((configuration
|
||||
(funcall constructor (symbol-value symbol))))
|
||||
(push (cons protocol configuration) epg--configurations)
|
||||
|
|
Loading…
Add table
Reference in a new issue