aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Kangas2025-02-13 09:25:12 +0100
committerStefan Kangas2025-02-13 09:25:12 +0100
commit2dad63cac31cfb9dc1dbb003f93fd4768c15082b (patch)
tree6cf6487e4d6eee26a3dd072ab8302f27c6fc8d10
parent069c8ff6d5860486ca8b97060002e80c3c4bdbc0 (diff)
downloademacs-2dad63cac31cfb9dc1dbb003f93fd4768c15082b.tar.gz
emacs-2dad63cac31cfb9dc1dbb003f93fd4768c15082b.zip
Fix defcustom :type of gnus-logo-colors
* lisp/gnus/gnus.el (gnus-logo-colors): Fix defcustom :type.
-rw-r--r--lisp/gnus/gnus.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/gnus/gnus.el b/lisp/gnus/gnus.el
index bd967563aac..756e28ebda5 100644
--- a/lisp/gnus/gnus.el
+++ b/lisp/gnus/gnus.el
@@ -760,7 +760,8 @@ be used directly.")
760(defcustom gnus-logo-colors nil 760(defcustom gnus-logo-colors nil
761 "Colors used for the Gnus logo." 761 "Colors used for the Gnus logo."
762 :set-after '(gnus-logo-color-style) 762 :set-after '(gnus-logo-color-style)
763 :type '(list color color) 763 :type '(choice (const :tag "Use default" nil)
764 (list color color))
764 :group 'gnus-xmas) 765 :group 'gnus-xmas)
765 766
766(defcustom gnus-logo-color-style 'ma 767(defcustom gnus-logo-color-style 'ma