]> git.eshelyaron.com Git - emacs.git/commitdiff
Character properties fix in lispref.
authorXue Fuqiao <xfq.free@gmail.com>
Wed, 11 Sep 2013 23:05:21 +0000 (07:05 +0800)
committerXue Fuqiao <xfq.free@gmail.com>
Wed, 11 Sep 2013 23:05:21 +0000 (07:05 +0800)
* doc/lispref/nonascii.texi (Character Properties): Character properties fix
for decimal-digit-value and digit-value.

doc/lispref/ChangeLog
doc/lispref/nonascii.texi

index 145d595b1d21752492de4d96392c6bf43a6d5c3c..574aba493c09baaae934ed075a2c53ecbb733ccf 100644 (file)
@@ -1,3 +1,8 @@
+2013-09-11  Xue Fuqiao  <xfq.free@gmail.com>
+
+       * nonascii.texi (Character Properties): Character properties fix
+       for decimal-digit-value and digit-value.
+
 2013-09-08  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * macros.texi (Defining Macros): Prefer "function" to "lambda
index ec949b376849a11d8797dd1571bf431e7048372b..64c0033847c940cf9c8da9a330d2ebb20e1d37d4 100644 (file)
@@ -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}.