emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master f4c1d95: Fix last change to message-signature :type


From: Basil L. Contovounesios
Subject: [Emacs-diffs] master f4c1d95: Fix last change to message-signature :type
Date: Mon, 13 May 2019 18:26:49 -0400 (EDT)

branch: master
commit f4c1d95bef2ee8077eef46a2e6c585c3fc8bc499
Author: Basil L. Contovounesios <address@hidden>
Commit: Basil L. Contovounesios <address@hidden>

    Fix last change to message-signature :type
    
    * lisp/gnus/message.el (message-signature): List more specific :type
    alternatives before more general ones, as per "(elisp) Composite
    Types".
---
 lisp/gnus/message.el | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el
index b68b953..1851337 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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]