From: David Bremner Date: Wed, 7 Jul 2021 01:25:57 +0000 (-0300) Subject: emacs: fix typo in variable name X-Git-Tag: archive/debian/0.33_rc0-1~30 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=04f378e673852ade100c54318124ff8c22f857b6 emacs: fix typo in variable name This error crept in during my style rewrite of dkg's proposed change. --- diff --git a/emacs/notmuch-crypto.el b/emacs/notmuch-crypto.el index 5edfe94c..de4d9aea 100644 --- a/emacs/notmuch-crypto.el +++ b/emacs/notmuch-crypto.el @@ -125,7 +125,7 @@ mode." (setq label (concat "Good signature by key: " fingerprint)) (setq face 'notmuch-crypto-signature-good-key) (when email-or-userid - (setq label (concat "Good signature by: " email-or-user-id)) + (setq label (concat "Good signature by: " email-or-userid)) (setq face 'notmuch-crypto-signature-good)) (setq button-action 'notmuch-crypto-sigstatus-good-callback) (setq help-msg (concat "Click to list key ID 0x" fingerprint "."))))