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".
This commit is contained in:
parent
2ecb7c5c0b
commit
f4c1d95bef
1 changed files with 4 additions and 4 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue