aboutsummaryrefslogtreecommitdiffhomepage
path: root/emacs/notmuch-crypto.el
diff options
context:
space:
mode:
authorGravatar Aaron Ecay <aaronecay@gmail.com>2011-12-17 10:47:48 -0500
committerGravatar David Bremner <bremner@debian.org>2011-12-21 07:27:38 -0400
commite3260d025389c2e98dbda58cff1c214497813bc2 (patch)
treec8cbead70665bb7142230c969f5b4d01eed2e785 /emacs/notmuch-crypto.el
parent4a2a271878ad31992f3121362d7e2dd12da2bf7a (diff)
Don't quote lambda forms
This generates byte-compiler warnings on (at least) current trunk versions of Emacs. The quote is not necessary; lambda forms are self-quoting.
Diffstat (limited to 'emacs/notmuch-crypto.el')
-rw-r--r--emacs/notmuch-crypto.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/emacs/notmuch-crypto.el b/emacs/notmuch-crypto.el
index 67c26af9..ac300987 100644
--- a/emacs/notmuch-crypto.el
+++ b/emacs/notmuch-crypto.el
@@ -68,7 +68,7 @@ mode."
:group 'notmuch)
(define-button-type 'notmuch-crypto-status-button-type
- 'action '(lambda (button) (message (button-get button 'help-echo)))
+ 'action (lambda (button) (message (button-get button 'help-echo)))
'follow-link t
'help-echo "Set notmuch-crypto-process-mime to process cryptographic mime parts.")
@@ -77,7 +77,7 @@ mode."
(help-msg nil)
(label "Signature not processed")
(face 'notmuch-crypto-signature-unknown)
- (button-action '(lambda (button) (message (button-get button 'help-echo)))))
+ (button-action (lambda (button) (message (button-get button 'help-echo)))))
(cond
((string= status "good")
(let ((fingerprint (concat "0x" (plist-get sigstatus :fingerprint))))