diff options
author | Daiki Ueno <ueno@gnu.org> | 2016-02-21 07:26:40 +0900 |
---|---|---|
committer | Daiki Ueno <ueno@gnu.org> | 2016-02-21 07:57:17 +0900 |
commit | d0f3b18fa91c3926034a859c3a7c11c0dab924e6 (patch) | |
tree | 79c20633bf4b38d04687c86e3e304bd6bd75b237 /lisp/epg.el | |
parent | 74ec92da9e0430728ac9496d3b1e50f0bb5dae3a (diff) | |
download | emacs-d0f3b18fa91c3926034a859c3a7c11c0dab924e6.tar.gz emacs-d0f3b18fa91c3926034a859c3a7c11c0dab924e6.tar.bz2 emacs-d0f3b18fa91c3926034a859c3a7c11c0dab924e6.zip |
Naming fix for consistency
* lisp/epg-config.el (epg-find-configuration): Rename from
`epg-configuration-find' to be consistent with other epg-* functions.
Change all callers.
Diffstat (limited to 'lisp/epg.el')
-rw-r--r-- | lisp/epg.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/epg.el b/lisp/epg.el index 1a18ab2a52a..f4058ed35a4 100644 --- a/lisp/epg.el +++ b/lisp/epg.el @@ -186,7 +186,7 @@ compress-algorithm &aux (program - (let ((configuration (epg-configuration-find protocol))) + (let ((configuration (epg-find-configuration protocol))) (unless configuration (signal 'epg-error (list "no usable configuration" protocol))) |