]> git.notmuchmail.org Git - notmuch/commitdiff
emacs: misc doc-string improvements
authorJonas Bernoulli <jonas@bernoul.li>
Mon, 16 Nov 2020 21:28:31 +0000 (22:28 +0100)
committerDavid Bremner <david@tethera.net>
Sun, 6 Dec 2020 20:20:28 +0000 (16:20 -0400)
emacs/notmuch-address.el
emacs/notmuch-crypto.el
emacs/notmuch-mua.el

index 561cc140e7b6f967e1771c52043fe006d927597c..2c51e89bb2a29f91f9e3e88a4d4d9f10d2a893cb 100644 (file)
@@ -36,9 +36,9 @@
 This variable is set by calling `notmuch-address-harvest'.")
 
 (defvar notmuch-address-full-harvest-finished nil
-  "t indicates that full completion address harvesting has been finished.
-Use notmuch-address--harvest-ready to access as that will load a
-saved hash if necessary (and available).")
+  "Whether full completion address harvesting has finished.
+Use `notmuch-address--harvest-ready' to access as that will load
+saved hash if necessary (and available).")
 
 (defun notmuch-address--harvest-ready ()
   "Return t if there is a full address hash available.
index 4fab215a78fe9410364ec6852bb9d6ceceeb6577..9e6f3a9d77a5b26a983ba83dbd21be4690c4866f 100644 (file)
@@ -27,7 +27,7 @@
 (declare-function notmuch-show-get-message-id "notmuch-show" (&optional bare))
 
 (defcustom notmuch-crypto-process-mime t
-  "Should cryptographic MIME parts be processed?
+  "Whether to process cryptographic MIME parts.
 
 If this variable is non-nil signatures in multipart/signed
 messages will be verified and multipart/encrypted parts will be
@@ -46,7 +46,7 @@ mode."
   :group 'notmuch-crypto)
 
 (defcustom notmuch-crypto-get-keys-asynchronously t
-  "Retrieve gpg keys asynchronously."
+  "Whether to retrieve openpgp keys asynchronously."
   :type 'boolean
   :group 'notmuch-crypto)
 
index 05763928fae06e32487d0f27431fce925e3ccbc4..29a2538bb3a7cd3112e3450647fe3bbaea445b16 100644 (file)
@@ -82,10 +82,11 @@ If this is `nil' then no `User-Agent:' will be generated."
   :group 'notmuch)
 
 (defcustom notmuch-mua-cite-function 'message-cite-original
-  "*Function for citing an original message.
+  "Function for citing an original message.
+
 Predefined functions include `message-cite-original' and
-`message-cite-original-without-signature'.
-Note that these functions use `mail-citation-hook' if that is non-nil."
+`message-cite-original-without-signature'.  Note that these
+functions use `mail-citation-hook' if that is non-nil."
   :type '(radio (function-item message-cite-original)
                (function-item message-cite-original-without-signature)
                (function-item sc-cite-original)