diff options
| author | Joakim Verona | 2013-09-12 01:16:33 +0200 |
|---|---|---|
| committer | Joakim Verona | 2013-09-12 01:16:33 +0200 |
| commit | 04f74f0e0200d94a049edff749eec790b7400811 (patch) | |
| tree | 4b9fb6419acda9d4fe2782d97ad4159d3a4fcc84 | |
| parent | ef064bb6241bc76840ebf5875d6e6a4c0e8003a2 (diff) | |
| parent | 44ee21472c20889fdf7fde888060a6951da7843b (diff) | |
| download | emacs-04f74f0e0200d94a049edff749eec790b7400811.tar.gz emacs-04f74f0e0200d94a049edff749eec790b7400811.zip | |
merge from trunk
| -rw-r--r-- | doc/lispref/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/lispref/nonascii.texi | 10 |
2 files changed, 10 insertions, 5 deletions
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 @@ | |||
| 1 | 2013-09-11 Xue Fuqiao <xfq.free@gmail.com> | ||
| 2 | |||
| 3 | * nonascii.texi (Character Properties): Character properties fix | ||
| 4 | for decimal-digit-value and digit-value. | ||
| 5 | |||
| 1 | 2013-09-08 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2013-09-08 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 7 | ||
| 3 | * macros.texi (Defining Macros): Prefer "function" to "lambda | 8 | * 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. | |||
| 478 | 478 | ||
| 479 | @item decimal-digit-value | 479 | @item decimal-digit-value |
| 480 | Corresponds to the Unicode @code{Numeric_Value} property for | 480 | Corresponds to the Unicode @code{Numeric_Value} property for |
| 481 | characters whose @code{Numeric_Type} is @samp{Digit}. The value is an | 481 | characters whose @code{Numeric_Type} is @samp{Decimal}. The value is |
| 482 | integer number. For unassigned codepoints, the value is @code{nil}, | 482 | an integer number. For unassigned codepoints, the value is |
| 483 | which means @acronym{NaN}, or ``not-a-number''. | 483 | @code{nil}, which means @acronym{NaN}, or ``not-a-number''. |
| 484 | 484 | ||
| 485 | @item digit-value | 485 | @item digit-value |
| 486 | Corresponds to the Unicode @code{Numeric_Value} property for | 486 | Corresponds to the Unicode @code{Numeric_Value} property for |
| 487 | characters whose @code{Numeric_Type} is @samp{Decimal}. The value is | 487 | characters whose @code{Numeric_Type} is @samp{Digit}. The value is an |
| 488 | an integer number. Examples of such characters include compatibility | 488 | integer number. Examples of such characters include compatibility |
| 489 | subscript and superscript digits, for which the value is the | 489 | subscript and superscript digits, for which the value is the |
| 490 | corresponding number. For unassigned codepoints, the value is | 490 | corresponding number. For unassigned codepoints, the value is |
| 491 | @code{nil}, which means @acronym{NaN}. | 491 | @code{nil}, which means @acronym{NaN}. |