diff options
author | Xue Fuqiao <xfq.free@gmail.com> | 2013-09-12 07:05:21 +0800 |
---|---|---|
committer | Xue Fuqiao <xfq.free@gmail.com> | 2013-09-12 07:05:21 +0800 |
commit | 44ee21472c20889fdf7fde888060a6951da7843b (patch) | |
tree | d160c86319d15a70fa8c2d2f52794b084245334c /doc/lispref/nonascii.texi | |
parent | aab6e902f93767b1ade593dff7ddfccd159124a6 (diff) | |
download | emacs-44ee21472c20889fdf7fde888060a6951da7843b.tar.gz emacs-44ee21472c20889fdf7fde888060a6951da7843b.tar.bz2 emacs-44ee21472c20889fdf7fde888060a6951da7843b.zip |
Character properties fix in lispref.
* doc/lispref/nonascii.texi (Character Properties): Character properties fix
for decimal-digit-value and digit-value.
Diffstat (limited to 'doc/lispref/nonascii.texi')
-rw-r--r-- | doc/lispref/nonascii.texi | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/lispref/nonascii.texi b/doc/lispref/nonascii.texi index ec949b37684..64c0033847c 100644 --- a/doc/lispref/nonascii.texi +++ b/doc/lispref/nonascii.texi @@ -478,14 +478,14 @@ unassigned codepoints, the value is the character itself. @item decimal-digit-value Corresponds to the Unicode @code{Numeric_Value} property for -characters whose @code{Numeric_Type} is @samp{Digit}. The value is an -integer number. For unassigned codepoints, the value is @code{nil}, -which means @acronym{NaN}, or ``not-a-number''. +characters whose @code{Numeric_Type} is @samp{Decimal}. The value is +an integer number. For unassigned codepoints, the value is +@code{nil}, which means @acronym{NaN}, or ``not-a-number''. @item digit-value Corresponds to the Unicode @code{Numeric_Value} property for -characters whose @code{Numeric_Type} is @samp{Decimal}. The value is -an integer number. Examples of such characters include compatibility +characters whose @code{Numeric_Type} is @samp{Digit}. The value is an +integer number. Examples of such characters include compatibility subscript and superscript digits, for which the value is the corresponding number. For unassigned codepoints, the value is @code{nil}, which means @acronym{NaN}. |