From: yamaoka Date: Mon, 12 Apr 1999 05:27:29 +0000 (+0000) Subject: * (mime-pgp-check-signature): Return nil if neither bad nor good. X-Git-Tag: semi-pgpgpg_06 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=d9f1027601f0cff41a0757733ef99c90ebf808a2;p=elisp%2Fsemi.git * (mime-pgp-check-signature): Return nil if neither bad nor good. --- diff --git a/ChangeLog b/ChangeLog index 76dbd67..8cee2fd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +1999-04-12 Katsumi Yamaoka + + * mime-pgp.el (mime-pgp-check-signature): Return nil if neither bad + nor good. + 1999-04-09 Katsumi Yamaoka * mime-mc.el (mime-mc-pgp-encrypt-region, mime-mc-pgp-sign-region, diff --git a/mime-pgp.el b/mime-pgp.el index b948ab3..956801f 100644 --- a/mime-pgp.el +++ b/mime-pgp.el @@ -361,14 +361,9 @@ or \"v\" for choosing a command of PGP 5.0i." (match-end 0)))) (goto-char (point-min)) ) - ;; PGP 5.0i always returns 0 status. - ((eq 'pgp50 pgp-version) - (message "Can't check signature") + (t ;; Returns nil in order for attempt to fetch key. nil - ) - (t - (message "Can't check signature") ))))) (defmacro mime-pgp-parse-verify-error (&rest forms)