From d92fb1592a02f7e34fb82069fc8d61d85dac8a48 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mattias=20Engdeg=C3=A5rd?= Date: Sat, 30 Jul 2022 15:06:43 +0200 Subject: [PATCH] ; * lisp/emacs-lisp/icons.el (icon-preference): repair type --- lisp/emacs-lisp/icons.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lisp/emacs-lisp/icons.el b/lisp/emacs-lisp/icons.el index 00784c4d95d..c16bb966121 100644 --- a/lisp/emacs-lisp/icons.el +++ b/lisp/emacs-lisp/icons.el @@ -49,10 +49,10 @@ on the current display, and \"degrade\" gracefully to an icon type that's available." :version "29.1" :group 'customize - :type '(repeat (const :tag "Images" image) - (const :tag "Colorful Emojis" emoji) - (const :tag "Monochrome Symbols" symbol) - (const :tag "Text Only" text))) + :type '(repeat (choice (const :tag "Images" image) + (const :tag "Colorful Emojis" emoji) + (const :tag "Monochrome Symbols" symbol) + (const :tag "Text Only" text)))) (defmacro define-icon (name parent specification documentation &rest keywords) "Define an icon identified by NAME. -- 2.39.5