mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
Fix bug #16216 with 'name' Unicode property of control characters.
admin/unidata/unidata-gen.el (unidata-split-name): Don't give any NAME to <control> characters: the Unicode Standard says they have no name. doc/lispref/nonascii.texi (Character Properties): NAME or OLD-NAME properties can be nil (there's no empty string).
This commit is contained in:
parent
a2b89a5195
commit
77e5bcc52e
4 changed files with 28 additions and 6 deletions
|
|
@ -440,7 +440,7 @@ properties that Emacs knows about:
|
|||
Corresponds to the @code{Name} Unicode property. The value is a
|
||||
string consisting of upper-case Latin letters A to Z, digits, spaces,
|
||||
and hyphen @samp{-} characters. For unassigned codepoints, the value
|
||||
is an empty string.
|
||||
is @code{nil}.
|
||||
|
||||
@cindex unicode general category
|
||||
@item general-category
|
||||
|
|
@ -522,7 +522,8 @@ is @code{nil}.
|
|||
|
||||
@item old-name
|
||||
Corresponds to the Unicode @code{Unicode_1_Name} property. The value
|
||||
is a string. For unassigned codepoints, the value is an empty string.
|
||||
is a string. Unassigned codepoints, and characters that have no value
|
||||
for this property, the value is @code{nil}.
|
||||
|
||||
@item iso-10646-comment
|
||||
Corresponds to the Unicode @code{ISO_Comment} property. The value is
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue