aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Bremner <david@tethera.net>2021-07-06 22:25:57 -0300
committerDavid Bremner <david@tethera.net>2021-07-06 22:25:57 -0300
commit04f378e673852ade100c54318124ff8c22f857b6 (patch)
treed379a96e0192d5c66dbb6a0f9154a0a2b9056a28
parentdd91621d808589e90168fb410c2c4b3b924f1eb8 (diff)
emacs: fix typo in variable name
This error crept in during my style rewrite of dkg's proposed change.
-rw-r--r--emacs/notmuch-crypto.el2
1 files changed, 1 insertions, 1 deletions
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 "."))))