diff options
| author | Richard M. Stallman | 2007-04-21 08:59:27 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2007-04-21 08:59:27 +0000 |
| commit | 31a3fb4938ac679df9df0fc56791cdb5fc63a642 (patch) | |
| tree | 31cc176083444d26175c98ff66d616e0a3caf8d7 /lispref | |
| parent | 9451a808080ccb9c7beb420f75b0445d143a3b9e (diff) | |
| download | emacs-31a3fb4938ac679df9df0fc56791cdb5fc63a642.tar.gz emacs-31a3fb4938ac679df9df0fc56791cdb5fc63a642.zip | |
(Special Properties): Clarify previous change.
Diffstat (limited to 'lispref')
| -rw-r--r-- | lispref/text.texi | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/lispref/text.texi b/lispref/text.texi index 38f2074e603..13d2d543f94 100644 --- a/lispref/text.texi +++ b/lispref/text.texi | |||
| @@ -3262,22 +3262,25 @@ Manual}) provides an example. | |||
| 3262 | @item composition | 3262 | @item composition |
| 3263 | @kindex composition @r{(text property)} | 3263 | @kindex composition @r{(text property)} |
| 3264 | This text property is used to display a sequence of characters as a | 3264 | This text property is used to display a sequence of characters as a |
| 3265 | single glyph composed from components. For instance, Thai base | 3265 | single glyph composed from components. For instance, in Thai a base |
| 3266 | consonant is composed with the following combining vowel as a single | 3266 | consonant is composed with the following combining vowel as a single |
| 3267 | glyph. | 3267 | glyph. The value should be a character or a sequence (vector, list, |
| 3268 | or string) of integers. | ||
| 3268 | 3269 | ||
| 3269 | The value is a character or a sequence (vector, list, or | 3270 | @itemize @bullet |
| 3270 | string) of integers. | 3271 | @item |
| 3272 | If it is a character, it means to display that character instead of | ||
| 3273 | the text in the region. | ||
| 3271 | 3274 | ||
| 3272 | If it is a character, it is an alternate character to display instead | 3275 | @item |
| 3276 | If it is a string, it means to display that string's contents instead | ||
| 3273 | of the text in the region. | 3277 | of the text in the region. |
| 3274 | 3278 | ||
| 3275 | If it is a string, it is an alternate character sequences to | 3279 | @item |
| 3276 | display. | 3280 | If it is a vector or list, the elements are characters interleaved |
| 3277 | 3281 | with internal codes specifying how to compose the following character | |
| 3278 | If it is a vector or list, it is a sequence of alternate | 3282 | with the previous one. |
| 3279 | characters interleaved with internal codes specifying how to | 3283 | @end itemize |
| 3280 | compose the following character with the previous one. | ||
| 3281 | @end table | 3284 | @end table |
| 3282 | 3285 | ||
| 3283 | @node Format Properties | 3286 | @node Format Properties |