diff options
author | Michael Olson <mwolson@gnu.org> | 2008-02-10 20:57:47 +0000 |
---|---|---|
committer | Michael Olson <mwolson@gnu.org> | 2008-02-10 20:57:47 +0000 |
commit | f1914c4078082de71933f6cdf7735411e488d045 (patch) | |
tree | cfb6b673ff2bb8fdd02e1a5aa7b7e5e96c0d6f18 /lisp/epg.el | |
parent | c6588a85bcb0bdcd615f4f34496d71943120e7ae (diff) | |
download | emacs-f1914c4078082de71933f6cdf7735411e488d045.tar.gz |
EasyPG: Implement some suggestions from emacs-devel.
Diffstat (limited to 'lisp/epg.el')
-rw-r--r-- | lisp/epg.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/epg.el b/lisp/epg.el index 4e6824ac9e0..cc07d6201d6 100644 --- a/lisp/epg.el +++ b/lisp/epg.el @@ -1430,7 +1430,7 @@ This function is for internal use only." signature (string-to-number (match-string 4 string))) (epg-signature-set-pubkey-algorithm - signature + signature (string-to-number (match-string 5 string))) (epg-signature-set-digest-algorithm signature @@ -1744,7 +1744,7 @@ This function is for internal use only." (defun epg-list-keys (context &optional name mode) "Return a list of epg-key objects matched with NAME. If MODE is nil or 'public, only public keyring should be searched. -If MODE is t or 'secret, only secret keyring should be searched. +If MODE is t or 'secret, only secret keyring should be searched. Otherwise, only public keyring should be searched and the key signatures should be included. NAME is either a string or a list of strings." |