From: ueno Date: Mon, 10 Jul 2006 06:37:33 +0000 (+0000) Subject: * epg.el (epg-signature-to-string): Remove a trailing whitespace. X-Git-Tag: epg-0_0_4~17 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=767679c21b470ee5506cdd68a75eea3b4b603261;p=elisp%2Fepg.git * epg.el (epg-signature-to-string): Remove a trailing whitespace. --- diff --git a/ChangeLog b/ChangeLog index ce55d7e..27ddb45 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,7 @@ 2006-07-10 Daiki Ueno * epg.el (epg--status-ERRSIG): Don't remove the last verify-result. + (epg-signature-to-string): Remove a trailing whitespace. * epa.el (epa-keys-mode-map): Bind return to epa-toggle-mark. (epa-toggle-mark): New command. diff --git a/epg.el b/epg.el index 350e0a1..599948f 100644 --- a/epg.el +++ b/epg.el @@ -759,15 +759,14 @@ This function is for internal use only." ((eq (epg-signature-status signature) 'no-pubkey) "No public key for ")) (epg-signature-key-id signature) - " " (if user-id - (concat (if (stringp user-id) + (concat " " + (if (stringp user-id) user-id - (epg-decode-dn user-id)) - " ") + (epg-decode-dn user-id))) "") (if (epg-signature-validity signature) - (format "(trust %s)" (epg-signature-validity signature)) + (format " (trust %s)" (epg-signature-validity signature)) "")))) (defun epg-verify-result-to-string (verify-result)