Specify initial values for glyphless-char-display-control elements
* lisp/international/characters.el (glyphless-char-display-control): Specify :value for all the elements, since nil is not a valid value.
This commit is contained in:
parent
051e49fe3c
commit
dd6b151c25
1 changed files with 10 additions and 5 deletions
|
@ -1618,31 +1618,36 @@ function (`update-glyphless-char-display'), which updates
|
|||
:type '(alist :key-type (symbol :tag "Character Group")
|
||||
:value-type (symbol :tag "Display Method"))
|
||||
:options '((c0-control
|
||||
(choice (const :tag "Don't display" zero-width)
|
||||
(choice :value thin-space
|
||||
(const :tag "Don't display" zero-width)
|
||||
(const :tag "Display as thin space" thin-space)
|
||||
(const :tag "Display as empty box" empty-box)
|
||||
(const :tag "Display acronym" acronym)
|
||||
(const :tag "Display hex code in a box" hex-code)))
|
||||
(c1-control
|
||||
(choice (const :tag "Don't display" zero-width)
|
||||
(choice :value thin-space
|
||||
(const :tag "Don't display" zero-width)
|
||||
(const :tag "Display as thin space" thin-space)
|
||||
(const :tag "Display as empty box" empty-box)
|
||||
(const :tag "Display acronym" acronym)
|
||||
(const :tag "Display hex code in a box" hex-code)))
|
||||
(format-control
|
||||
(choice (const :tag "Don't display" zero-width)
|
||||
(choice :value thin-space
|
||||
(const :tag "Don't display" zero-width)
|
||||
(const :tag "Display as thin space" thin-space)
|
||||
(const :tag "Display as empty box" empty-box)
|
||||
(const :tag "Display acronym" acronym)
|
||||
(const :tag "Display hex code in a box" hex-code)))
|
||||
(variation-selectors
|
||||
(choice (const :tag "Don't display" zero-width)
|
||||
(choice :value thin-space
|
||||
(const :tag "Don't display" zero-width)
|
||||
(const :tag "Display as thin space" thin-space)
|
||||
(const :tag "Display as empty box" empty-box)
|
||||
(const :tag "Display acronym" acronym)
|
||||
(const :tag "Display hex code in a box" hex-code)))
|
||||
(no-font
|
||||
(choice (const :tag "Don't display" zero-width)
|
||||
(choice :value hex-code
|
||||
(const :tag "Don't display" zero-width)
|
||||
(const :tag "Display as thin space" thin-space)
|
||||
(const :tag "Display as empty box" empty-box)
|
||||
(const :tag "Display acronym" acronym)
|
||||
|
|
Loading…
Add table
Reference in a new issue