summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lisp/gnus/message.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el
index b68b953464d..1851337b439 100644
--- a/lisp/gnus/message.el
+++ b/lisp/gnus/message.el
@@ -1083,10 +1083,10 @@ 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
- (const :tag "None" nil))
+ :type '(choice string
+ (const :tag "None" nil)
+ (const :tag "Contents of signature file" t)
+ function sexp)
:risky t
:link '(custom-manual "(message)Insertion Variables")
:group 'message-insertion)