diff options
author | Mattias EngdegÄrd <mattiase@acm.org> | 2022-07-30 15:06:43 +0200 |
---|---|---|
committer | Mattias EngdegÄrd <mattiase@acm.org> | 2022-07-30 15:07:12 +0200 |
commit | d92fb1592a02f7e34fb82069fc8d61d85dac8a48 (patch) | |
tree | 473169beec1d401e5024f65d3feb9e5367d12963 /lisp/emacs-lisp | |
parent | a5adcbdf28eb8ad376a1004f4a6c9eda1f1447fb (diff) | |
download | emacs-d92fb1592a02f7e34fb82069fc8d61d85dac8a48.tar.gz emacs-d92fb1592a02f7e34fb82069fc8d61d85dac8a48.tar.bz2 emacs-d92fb1592a02f7e34fb82069fc8d61d85dac8a48.zip |
; * lisp/emacs-lisp/icons.el (icon-preference): repair type
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/icons.el | 8 |
1 files 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. |