From: Stefan Kangas Date: Thu, 13 Feb 2025 08:25:12 +0000 (+0100) Subject: Fix defcustom :type of gnus-logo-colors X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3fc5992802dc41fde05c18281a2231bf3dd6ace3;p=emacs.git Fix defcustom :type of gnus-logo-colors * lisp/gnus/gnus.el (gnus-logo-colors): Fix defcustom :type. (cherry picked from commit 2dad63cac31cfb9dc1dbb003f93fd4768c15082b) --- diff --git a/lisp/gnus/gnus.el b/lisp/gnus/gnus.el index 091a389cefb..f267e2e3300 100644 --- a/lisp/gnus/gnus.el +++ b/lisp/gnus/gnus.el @@ -760,7 +760,8 @@ be used directly.") (defcustom gnus-logo-colors nil "Colors used for the Gnus logo." :set-after '(gnus-logo-color-style) - :type '(list color color) + :type '(choice (const :tag "Use default" nil) + (list color color)) :group 'gnus-xmas) (defcustom gnus-logo-color-style 'ma