]> git.eshelyaron.com Git - emacs.git/commitdiff
Document nil value of message-signature and mail-signature
authorRobert Pluim <rpluim@gmail.com>
Mon, 13 May 2019 20:45:16 +0000 (16:45 -0400)
committerLars Ingebrigtsen <larsi@gnus.org>
Mon, 13 May 2019 20:46:27 +0000 (16:46 -0400)
* lisp/gnus/message.el (message-signature): Allow nil as a
customizable value, and describe its effect.
* lisp/mail/sendmail.el (mail-signature): Describe effect of nil
value (bug#32680).

lisp/gnus/message.el
lisp/mail/sendmail.el

index 442104af8a8fd8f2d891b17f381b85ac95191e7f..b68b953464d01395a0d4f062e0709564c0398b21 100644 (file)
@@ -1078,13 +1078,15 @@ point and mark around the citation text as modified."
 
 (defcustom message-signature mail-signature
   "String to be inserted at the end of the message buffer.
-If t, the `message-signature-file' file will be inserted instead.
-If a function, the result from the function will be used instead.
-If a form, the result from the form will be used instead."
+If nil, don't insert a signature.
+If t, insert `message-signature-file'.
+If a function or form, insert its result.
+See `mail-signature' for the recommended format of a signature."
   :version "23.2"
   :type '(choice string (const :tag "Contents of signature file" t)
                 function
-                sexp)
+                sexp
+                 (const :tag "None" nil))
   :risky t
   :link '(custom-manual "(message)Insertion Variables")
   :group 'message-insertion)
index 93b6c90521bcbc198ba8c15fe04cb6374e518379..208ebb680171e051cd8a3a88a35ac55b85f07b81 100644 (file)
@@ -370,6 +370,7 @@ By default, this is the file specified by `mail-personal-alias-file'." t)
 ;;;###autoload
 (defcustom mail-signature t
   "Text inserted at end of mail buffer when a message is initialized.
+If nil, no signature is inserted.
 If t, it means to insert the contents of the file `mail-signature-file'.
 If a string, that string is inserted.
  (To make a proper signature, the string should begin with \\n\\n-- \\n,