1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-07 06:22:32 -08:00

; * lisp/emacs-lisp/icons.el (icon-preference): repair type

This commit is contained in:
Mattias Engdegård 2022-07-30 15:06:43 +02:00
parent a5adcbdf28
commit d92fb1592a

View file

@ -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.