1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-05-31 01:32:00 -07:00

; * lisp/term/pgtk-win.el (icon-map-list): Fix :type.

This commit is contained in:
Eli Zaretskii 2026-05-09 12:44:59 +03:00
parent 5579893ed7
commit d7c130972e

View file

@ -302,7 +302,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 'pgtk)
(defconst x-gtk-stock-cache (make-hash-table :weakness t :test 'equal))