From 0489230cc9ce93105ae4779d6dfa09b5b30832d0 Mon Sep 17 00:00:00 2001 From: Mauro Aranda Date: Sat, 15 Oct 2022 10:01:09 -0300 Subject: [PATCH] ; Fix message-server-alist :type (Bug#58546) --- 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 67ec0531fa..5e4e9854a6 100644 --- a/lisp/gnus/message.el +++ b/lisp/gnus/message.el @@ -4361,10 +4361,10 @@ message-server-alist the function will be inserted instead. If the buffer already has a\"X-Message-SMTP-Method\" header, it is left unchanged." - :type '(alist :key-type '(choice - (string :tag "From Address") - (function :tag "Predicate")) - :value-type 'string) + :type '(alist :key-type (choice + (string :tag "From Address") + (function :tag "Predicate")) + :value-type string) :version "29.1" :group 'message-sending) -- 2.34.1