From: Xue Fuqiao Date: Wed, 11 Sep 2013 23:05:21 +0000 (+0800) Subject: Character properties fix in lispref. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~1662^2~24 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=44ee21472c20889fdf7fde888060a6951da7843b;p=emacs.git Character properties fix in lispref. * doc/lispref/nonascii.texi (Character Properties): Character properties fix for decimal-digit-value and digit-value. --- diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 145d595b1d2..574aba493c0 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog @@ -1,3 +1,8 @@ +2013-09-11 Xue Fuqiao + + * nonascii.texi (Character Properties): Character properties fix + for decimal-digit-value and digit-value. + 2013-09-08 Stefan Monnier * macros.texi (Defining Macros): Prefer "function" to "lambda 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}.