diff options
| author | Eli Zaretskii | 2015-06-26 13:03:02 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2015-06-26 13:03:02 +0300 |
| commit | bde61680abe71059b60a37868a804adf3d819678 (patch) | |
| tree | 9de48d342388b5528e15dc72907a521787703d78 | |
| parent | f14275633851b047e5aecfa6d12f160ee4c2f149 (diff) | |
| download | emacs-bde61680abe71059b60a37868a804adf3d819678.tar.gz emacs-bde61680abe71059b60a37868a804adf3d819678.zip | |
Minor corrections in ELisp manual
* doc/lispref/nonascii.texi (Character Properties): Correct
inaccuracies in description of values of the Unicode properties.
| -rw-r--r-- | doc/lispref/nonascii.texi | 35 |
1 files changed, 20 insertions, 15 deletions
diff --git a/doc/lispref/nonascii.texi b/doc/lispref/nonascii.texi index 362c3a4dcbb..8781cd6d696 100644 --- a/doc/lispref/nonascii.texi +++ b/doc/lispref/nonascii.texi | |||
| @@ -474,32 +474,36 @@ inside @samp{<..>} brackets, but the tag names in Emacs do not include | |||
| 474 | the brackets; e.g., Unicode specifies @samp{<small>} where Emacs uses | 474 | the brackets; e.g., Unicode specifies @samp{<small>} where Emacs uses |
| 475 | @samp{small}. }; the other elements are characters that give the | 475 | @samp{small}. }; the other elements are characters that give the |
| 476 | compatibility decomposition sequence of this character. For | 476 | compatibility decomposition sequence of this character. For |
| 477 | unassigned codepoints, the value is the character itself. | 477 | characters that don't have decomposition sequences, and for unassigned |
| 478 | codepoints, the value is a list with a single member, the character | ||
| 479 | itself. | ||
| 478 | 480 | ||
| 479 | @item decimal-digit-value | 481 | @item decimal-digit-value |
| 480 | Corresponds to the Unicode @code{Numeric_Value} property for | 482 | Corresponds to the Unicode @code{Numeric_Value} property for |
| 481 | characters whose @code{Numeric_Type} is @samp{Decimal}. The value is | 483 | characters whose @code{Numeric_Type} is @samp{Decimal}. The value is |
| 482 | an integer. For unassigned codepoints, the value is | 484 | an integer, or @code{nil} if the character has no decimal digit value. |
| 483 | @code{nil}, which means @acronym{NaN}, or ``not-a-number''. | 485 | For unassigned codepoints, the value is @code{nil}, which means |
| 486 | @acronym{NaN}, or ``not-a-number''. | ||
| 484 | 487 | ||
| 485 | @item digit-value | 488 | @item digit-value |
| 486 | Corresponds to the Unicode @code{Numeric_Value} property for | 489 | Corresponds to the Unicode @code{Numeric_Value} property for |
| 487 | characters whose @code{Numeric_Type} is @samp{Digit}. The value is an | 490 | characters whose @code{Numeric_Type} is @samp{Digit}. The value is an |
| 488 | integer. Examples of such characters include compatibility | 491 | integer. Examples of such characters include compatibility subscript |
| 489 | subscript and superscript digits, for which the value is the | 492 | and superscript digits, for which the value is the corresponding |
| 490 | corresponding number. For unassigned codepoints, the value is | 493 | number. For characters that don't have any numeric value, and for |
| 491 | @code{nil}, which means @acronym{NaN}. | 494 | unassigned codepoints, the value is @code{nil}, which means |
| 495 | @acronym{NaN}. | ||
| 492 | 496 | ||
| 493 | @item numeric-value | 497 | @item numeric-value |
| 494 | Corresponds to the Unicode @code{Numeric_Value} property for | 498 | Corresponds to the Unicode @code{Numeric_Value} property for |
| 495 | characters whose @code{Numeric_Type} is @samp{Numeric}. The value of | 499 | characters whose @code{Numeric_Type} is @samp{Numeric}. The value of |
| 496 | this property is a number. Examples of | 500 | this property is a number. Examples of characters that have this |
| 497 | characters that have this property include fractions, subscripts, | 501 | property include fractions, subscripts, superscripts, Roman numerals, |
| 498 | superscripts, Roman numerals, currency numerators, and encircled | 502 | currency numerators, and encircled numbers. For example, the value of |
| 499 | numbers. For example, the value of this property for the character | 503 | this property for the character @code{U+2155} (@sc{vulgar fraction one |
| 500 | @code{U+2155} (@sc{vulgar fraction one fifth}) is @code{0.2}. For | 504 | fifth}) is @code{0.2}. For characters that don't have any numeric |
| 501 | unassigned codepoints, the value is @code{nil}, which means | 505 | value, and for unassigned codepoints, the value is @code{nil}, which |
| 502 | @acronym{NaN}. | 506 | means @acronym{NaN}. |
| 503 | 507 | ||
| 504 | @cindex mirroring of characters | 508 | @cindex mirroring of characters |
| 505 | @item mirrored | 509 | @item mirrored |
| @@ -545,7 +549,8 @@ value for this property, the value is @code{nil}. | |||
| 545 | 549 | ||
| 546 | @item iso-10646-comment | 550 | @item iso-10646-comment |
| 547 | Corresponds to the Unicode @code{ISO_Comment} property. The value is | 551 | Corresponds to the Unicode @code{ISO_Comment} property. The value is |
| 548 | a string. For unassigned codepoints, the value is an empty string. | 552 | either a string or @code{nil}. For unassigned codepoints, the value |
| 553 | is @code{nil}. | ||
| 549 | 554 | ||
| 550 | @item uppercase | 555 | @item uppercase |
| 551 | Corresponds to the Unicode @code{Simple_Uppercase_Mapping} property. | 556 | Corresponds to the Unicode @code{Simple_Uppercase_Mapping} property. |