; * lisp/term/x-win.el (icon-map-list): Fix :type (bug#80982)

This commit is contained in:
Eli Zaretskii 2026-05-07 19:05:39 +03:00
parent f833e560c1
commit a9064bfdd9

View file

@ -1491,7 +1491,10 @@ If you don't want stock icons, set the variable to nil."
:type '(choice (const :tag "Don't use stock icons" nil)
(repeat (choice symbol
(cons (string :tag "Emacs icon")
(string :tag "Stock/named")))))
(choice
(group (string "Named")
(string "Stock"))
(string :tag "Stock/named"))))))
:group 'x)
(defcustom x-display-cursor-at-start-of-preedit-string nil