diff options
| author | Basil L. Contovounesios | 2019-05-13 23:23:06 +0100 |
|---|---|---|
| committer | Basil L. Contovounesios | 2019-05-13 23:23:06 +0100 |
| commit | f4c1d95bef2ee8077eef46a2e6c585c3fc8bc499 (patch) | |
| tree | acbed2c7f438162e87f772017ff3c5c44140d3df | |
| parent | 2ecb7c5c0bc7c74df0751bbd3824de4aec8ed467 (diff) | |
| download | emacs-f4c1d95bef2ee8077eef46a2e6c585c3fc8bc499.tar.gz emacs-f4c1d95bef2ee8077eef46a2e6c585c3fc8bc499.zip | |
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".
| -rw-r--r-- | lisp/gnus/message.el | 8 |
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'. | |||
| 1083 | If a function or form, insert its result. | 1083 | If a function or form, insert its result. |
| 1084 | See `mail-signature' for the recommended format of a signature." | 1084 | See `mail-signature' for the recommended format of a signature." |
| 1085 | :version "23.2" | 1085 | :version "23.2" |
| 1086 | :type '(choice string (const :tag "Contents of signature file" t) | 1086 | :type '(choice string |
| 1087 | function | 1087 | (const :tag "None" nil) |
| 1088 | sexp | 1088 | (const :tag "Contents of signature file" t) |
| 1089 | (const :tag "None" nil)) | 1089 | function sexp) |
| 1090 | :risky t | 1090 | :risky t |
| 1091 | :link '(custom-manual "(message)Insertion Variables") | 1091 | :link '(custom-manual "(message)Insertion Variables") |
| 1092 | :group 'message-insertion) | 1092 | :group 'message-insertion) |