diff options
| author | Mattias EngdegÄrd | 2022-07-30 15:06:43 +0200 |
|---|---|---|
| committer | Mattias EngdegÄrd | 2022-07-30 15:07:12 +0200 |
| commit | d92fb1592a02f7e34fb82069fc8d61d85dac8a48 (patch) | |
| tree | 473169beec1d401e5024f65d3feb9e5367d12963 | |
| parent | a5adcbdf28eb8ad376a1004f4a6c9eda1f1447fb (diff) | |
| download | emacs-d92fb1592a02f7e34fb82069fc8d61d85dac8a48.tar.gz emacs-d92fb1592a02f7e34fb82069fc8d61d85dac8a48.zip | |
; * lisp/emacs-lisp/icons.el (icon-preference): repair type
| -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 | |||
| 49 | type that's available." | 49 | type that's available." |
| 50 | :version "29.1" | 50 | :version "29.1" |
| 51 | :group 'customize | 51 | :group 'customize |
| 52 | :type '(repeat (const :tag "Images" image) | 52 | :type '(repeat (choice (const :tag "Images" image) |
| 53 | (const :tag "Colorful Emojis" emoji) | 53 | (const :tag "Colorful Emojis" emoji) |
| 54 | (const :tag "Monochrome Symbols" symbol) | 54 | (const :tag "Monochrome Symbols" symbol) |
| 55 | (const :tag "Text Only" text))) | 55 | (const :tag "Text Only" text)))) |
| 56 | 56 | ||
| 57 | (defmacro define-icon (name parent specification documentation &rest keywords) | 57 | (defmacro define-icon (name parent specification documentation &rest keywords) |
| 58 | "Define an icon identified by NAME. | 58 | "Define an icon identified by NAME. |