diff options
| author | Eli Zaretskii | 2011-08-16 11:26:46 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2011-08-16 11:26:46 +0300 |
| commit | 108628738193907452fc32b9d8a4be44ff589d89 (patch) | |
| tree | bce1ece259bf91d72a581b132d11f796cea8b592 /doc | |
| parent | 1ea897d542c8de7858ff5ea1bf7e26c8e5bca135 (diff) | |
| download | emacs-108628738193907452fc32b9d8a4be44ff589d89.tar.gz emacs-108628738193907452fc32b9d8a4be44ff589d89.zip | |
Document the new "mirroring" Unicode character property.
src/nonascii.texi (Character Properties): Document the `mirroring'
property. Add index entries.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/ChangeLog | 3 | ||||
| -rw-r--r-- | doc/lispref/nonascii.texi | 12 |
2 files changed, 15 insertions, 0 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 40ad3dc8c52..58ce89b7eef 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2011-08-16 Eli Zaretskii <eliz@gnu.org> | 1 | 2011-08-16 Eli Zaretskii <eliz@gnu.org> |
| 2 | 2 | ||
| 3 | * nonascii.texi (Character Properties): Document the `mirroring' | ||
| 4 | property. Add index entries. | ||
| 5 | |||
| 3 | * syntax.texi (Categories): Add an example of defining a new | 6 | * syntax.texi (Categories): Add an example of defining a new |
| 4 | category and category table. | 7 | category and category table. |
| 5 | 8 | ||
diff --git a/doc/lispref/nonascii.texi b/doc/lispref/nonascii.texi index 77337899923..83f9f424834 100644 --- a/doc/lispref/nonascii.texi +++ b/doc/lispref/nonascii.texi | |||
| @@ -388,6 +388,7 @@ character's classification. | |||
| 388 | Corresponds to the @code{Canonical_Combining_Class} Unicode property. | 388 | Corresponds to the @code{Canonical_Combining_Class} Unicode property. |
| 389 | The value is an integer number. | 389 | The value is an integer number. |
| 390 | 390 | ||
| 391 | @cindex bidirectional class of characters | ||
| 391 | @item bidi-class | 392 | @item bidi-class |
| 392 | Corresponds to the Unicode @code{Bidi_Class} property. The value is a | 393 | Corresponds to the Unicode @code{Bidi_Class} property. The value is a |
| 393 | symbol whose name is the Unicode @dfn{directional type} of the | 394 | symbol whose name is the Unicode @dfn{directional type} of the |
| @@ -426,10 +427,21 @@ superscripts, Roman numerals, currency numerators, and encircled | |||
| 426 | numbers. For example, the value of this property for the character | 427 | numbers. For example, the value of this property for the character |
| 427 | @code{U+2155} (@sc{vulgar fraction one fifth}) is @code{0.2}. | 428 | @code{U+2155} (@sc{vulgar fraction one fifth}) is @code{0.2}. |
| 428 | 429 | ||
| 430 | @cindex mirroring of characters | ||
| 429 | @item mirrored | 431 | @item mirrored |
| 430 | Corresponds to the Unicode @code{Bidi_Mirrored} property. The value | 432 | Corresponds to the Unicode @code{Bidi_Mirrored} property. The value |
| 431 | of this property is a symbol, either @code{Y} or @code{N}. | 433 | of this property is a symbol, either @code{Y} or @code{N}. |
| 432 | 434 | ||
| 435 | @item mirroring | ||
| 436 | Corresponds to the Unicode @code{Bidi_Mirroring_Glyph} property. The | ||
| 437 | value of this property is a character whose glyph represents the | ||
| 438 | mirror image of the character's glyph, or @code{nil} if there's no | ||
| 439 | defined mirroring glyph. All the characters whose @code{mirrored} | ||
| 440 | property is @code{N} have @code{nil} as their @code{mirroring} | ||
| 441 | property; however, some characters whose @code{mirrored} property is | ||
| 442 | @code{Y} also have @code{nil} for @code{mirroring}, because no | ||
| 443 | appropriate characters exist with mirrored glyphs. | ||
| 444 | |||
| 433 | @item old-name | 445 | @item old-name |
| 434 | Corresponds to the Unicode @code{Unicode_1_Name} property. The value | 446 | Corresponds to the Unicode @code{Unicode_1_Name} property. The value |
| 435 | is a string. | 447 | is a string. |