From 3fc5992802dc41fde05c18281a2231bf3dd6ace3 Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Thu, 13 Feb 2025 09:25:12 +0100 Subject: [PATCH] Fix defcustom :type of gnus-logo-colors * lisp/gnus/gnus.el (gnus-logo-colors): Fix defcustom :type. (cherry picked from commit 2dad63cac31cfb9dc1dbb003f93fd4768c15082b) --- lisp/gnus/gnus.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 2.39.5