diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2019-05-17 04:47:31 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2019-05-17 04:47:31 +0200 |
commit | 92b1edb1f8232785c25cc9484a5dfb78b51da414 (patch) | |
tree | 00e594bdc620e74d55d539944293f39fed1adc51 /lisp/epg.el | |
parent | cad2bbbe25fda36f7eb5a81c34070e26743f4ccf (diff) | |
download | emacs-92b1edb1f8232785c25cc9484a5dfb78b51da414.tar.gz emacs-92b1edb1f8232785c25cc9484a5dfb78b51da414.tar.bz2 emacs-92b1edb1f8232785c25cc9484a5dfb78b51da414.zip |
Remove obsolete epg functions
* lisp/epg.el (epg-start-sign-keys, epg-sign-keys): Remove
functions declared obsolete since Emacs 23.1.
Diffstat (limited to 'lisp/epg.el')
-rw-r--r-- | lisp/epg.el | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/lisp/epg.el b/lisp/epg.el index e06cc06a7d1..0400716845c 100644 --- a/lisp/epg.el +++ b/lisp/epg.el @@ -1936,40 +1936,6 @@ If you are unsure, use synchronous version of this function (epg-errors-to-string errors)))))) (epg-reset context))) -(defun epg-start-sign-keys (context keys &optional local) - "Initiate a sign keys operation. - -If you use this function, you will need to wait for the completion of -`epg-gpg-program' by using `epg-wait-for-completion' and call -`epg-reset' to clear a temporary output file. -If you are unsure, use synchronous version of this function -`epg-sign-keys' instead." - (declare (obsolete nil "23.1")) - (setf (epg-context-operation context) 'sign-keys) - (setf (epg-context-result context) nil) - (epg--start context (cons (if local - "--lsign-key" - "--sign-key") - (mapcar - (lambda (key) - (epg-sub-key-id - (car (epg-key-sub-key-list key)))) - keys)))) - -(defun epg-sign-keys (context keys &optional local) - "Sign KEYS from the key ring." - (declare (obsolete nil "23.1")) - (unwind-protect - (progn - (epg-start-sign-keys context keys local) - (epg-wait-for-completion context) - (let ((errors (epg-context-result-for context 'error))) - (if errors - (signal 'epg-error - (list "Sign keys failed" - (epg-errors-to-string errors)))))) - (epg-reset context))) - (defun epg-start-generate-key (context parameters) "Initiate a key generation. PARAMETERS is a string which specifies parameters of the generated key. |