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-config.el | |
parent | 74ec92da9e0430728ac9496d3b1e50f0bb5dae3a (diff) | |
download | emacs-d0f3b18fa91c3926034a859c3a7c11c0dab924e6.tar.gz |
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-config.el')
-rw-r--r-- | lisp/epg-config.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/epg-config.el b/lisp/epg-config.el index 1d7706647db..8a208044cba 100644 --- a/lisp/epg-config.el +++ b/lisp/epg-config.el @@ -99,7 +99,7 @@ Emacs.") (defvar epg--configurations nil) ;;;###autoload -(defun epg-configuration-find (protocol &optional force) +(defun epg-find-configuration (protocol &optional force) "Find or create a usable configuration to handle PROTOCOL. This function first looks at the existing configuration found by the previous invocation of this function, unless FORCE is non-nil. @@ -190,7 +190,7 @@ entry until the version requirement is met." ;;;###autoload (defun epg-configuration () "Return a list of internal configuration parameters of `epg-gpg-program'." - (declare (obsolete epg-configuration-find "25.1")) + (declare (obsolete epg-find-configuration "25.1")) (epg-config--make-gpg-configuration epg-gpg-program)) (defun epg-config--parse-version (string) |