diff options
author | Eli Zaretskii <eliz@gnu.org> | 2013-12-22 20:02:37 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2013-12-22 20:02:37 +0200 |
commit | 77e5bcc52eadbcfc8e6d9a463782c04f5dc63c25 (patch) | |
tree | 24cd7facfd058883cea7b8b6bf03f562358a9f6b /doc/lispref | |
parent | a2b89a519573ae5ef301ef5c9b0eb224df8bd960 (diff) | |
download | emacs-77e5bcc52eadbcfc8e6d9a463782c04f5dc63c25.tar.gz emacs-77e5bcc52eadbcfc8e6d9a463782c04f5dc63c25.tar.bz2 emacs-77e5bcc52eadbcfc8e6d9a463782c04f5dc63c25.zip |
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).
Diffstat (limited to 'doc/lispref')
-rw-r--r-- | doc/lispref/ChangeLog | 14 | ||||
-rw-r--r-- | doc/lispref/nonascii.texi | 5 |
2 files changed, 14 insertions, 5 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index d03f6ae39da..c0a3c81e926 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog @@ -1,12 +1,20 @@ +2013-12-22 Eli Zaretskii <eliz@gnu.org> + + * nonascii.texi (Character Properties): NAME or OLD-NAME + properties can be nil (there's no empty string). + 2013-12-22 Xue Fuqiao <xfq.free@gmail.com> - * sequences.texi (Bool-Vectors): Document new bool-vector set operation functions. + * sequences.texi (Bool-Vectors): Document new bool-vector set + operation functions. * text.texi (Examining Properties): Document `get-pos-property'. - * variables.texi (Directory Local Variables): Document `enable-dir-local-variables'. + * variables.texi (Directory Local Variables): Document + `enable-dir-local-variables'. - * debugging.texi (Debugger Commands): Document `debugger-toggle-locals'. + * debugging.texi (Debugger Commands): Document + `debugger-toggle-locals'. 2013-12-21 Chong Yidong <cyd@gnu.org> diff --git a/doc/lispref/nonascii.texi b/doc/lispref/nonascii.texi index 4132c1f8de0..ee4c8b77f3d 100644 --- a/doc/lispref/nonascii.texi +++ b/doc/lispref/nonascii.texi @@ -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 |