From 1771d9b8082cf967e3f8b6a436d8766560be9e8d Mon Sep 17 00:00:00 2001 From: Teemu Likonen Date: Sun, 25 Jun 2017 20:50:54 +0300 Subject: [PATCH] Fix bug in handling GnuPG's TRUST_MARGINAL status * lisp/epg.el (epg--status-TRUST_MARGINAL): Change symbol `marginal' to `good'. --- lisp/epg.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/epg.el b/lisp/epg.el index 587271b0003..1e24b8d1169 100644 --- a/lisp/epg.el +++ b/lisp/epg.el @@ -1047,7 +1047,7 @@ callback data (if any)." (defun epg--status-TRUST_MARGINAL (context _string) (let ((signature (car (epg-context-result-for context 'verify)))) (if (and signature - (eq (epg-signature-status signature) 'marginal)) + (eq (epg-signature-status signature) 'good)) (setf (epg-signature-validity signature) 'marginal)))) (defun epg--status-TRUST_FULLY (context _string) -- 2.39.2