bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#42397: [PATCH v2 01/16] ; * lisp/epg.el (epg-signature-to-string): U


From: Jonas Bernoulli
Subject: bug#42397: [PATCH v2 01/16] ; * lisp/epg.el (epg-signature-to-string): Use cl-case.
Date: Mon, 10 Aug 2020 23:14:15 +0200

In this case we can greatly increase readability by using `cl-case'
instead of `cond'.
---
 lisp/epg.el | 19 +++++++------------
 1 file changed, 7 insertions(+), 12 deletions(-)

diff --git a/lisp/epg.el b/lisp/epg.el
index 5b90bc290a..65decf3cf5 100644
--- a/lisp/epg.el
+++ b/lisp/epg.el
@@ -404,18 +404,13 @@ epg-signature-to-string
         (pubkey-algorithm (epg-signature-pubkey-algorithm signature))
         (key-id (epg-signature-key-id signature)))
     (concat
-     (cond ((eq (epg-signature-status signature) 'good)
-           "Good signature from ")
-          ((eq (epg-signature-status signature) 'bad)
-           "Bad signature from ")
-          ((eq (epg-signature-status signature) 'expired)
-           "Expired signature from ")
-          ((eq (epg-signature-status signature) 'expired-key)
-           "Signature made by expired key ")
-          ((eq (epg-signature-status signature) 'revoked-key)
-           "Signature made by revoked key ")
-          ((eq (epg-signature-status signature) 'no-pubkey)
-           "No public key for "))
+     (cl-case (epg-signature-status signature)
+       (good "Good signature from ")
+       (bad "Bad signature from ")
+       (expired "Expired signature from ")
+       (expired-key "Signature made by expired key ")
+       (revoked-key "Signature made by revoked key ")
+       (no-pubkey "No public key for "))
      key-id
      (if user-id
         (concat " "
-- 
2.28.0






reply via email to

[Prev in Thread] Current Thread [Next in Thread]