]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix last change to message-signature :type
authorBasil L. Contovounesios <contovob@tcd.ie>
Mon, 13 May 2019 22:23:06 +0000 (23:23 +0100)
committerBasil L. Contovounesios <contovob@tcd.ie>
Mon, 13 May 2019 22:23:06 +0000 (23:23 +0100)
* lisp/gnus/message.el (message-signature): List more specific :type
alternatives before more general ones, as per "(elisp) Composite
Types".

lisp/gnus/message.el

index b68b953464d01395a0d4f062e0709564c0398b21..1851337b439e5adbeb283fc3ff2d50fd6ca1d86e 100644 (file)
@@ -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)