aboutsummaryrefslogtreecommitdiffstats
path: root/lispref
diff options
context:
space:
mode:
authorRichard M. Stallman2007-04-21 08:59:27 +0000
committerRichard M. Stallman2007-04-21 08:59:27 +0000
commit31a3fb4938ac679df9df0fc56791cdb5fc63a642 (patch)
tree31cc176083444d26175c98ff66d616e0a3caf8d7 /lispref
parent9451a808080ccb9c7beb420f75b0445d143a3b9e (diff)
downloademacs-31a3fb4938ac679df9df0fc56791cdb5fc63a642.tar.gz
emacs-31a3fb4938ac679df9df0fc56791cdb5fc63a642.zip
(Special Properties): Clarify previous change.
Diffstat (limited to 'lispref')
-rw-r--r--lispref/text.texi25
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)}
3264This text property is used to display a sequence of characters as a 3264This text property is used to display a sequence of characters as a
3265single glyph composed from components. For instance, Thai base 3265single glyph composed from components. For instance, in Thai a base
3266consonant is composed with the following combining vowel as a single 3266consonant is composed with the following combining vowel as a single
3267glyph. 3267glyph. The value should be a character or a sequence (vector, list,
3268or string) of integers.
3268 3269
3269The value is a character or a sequence (vector, list, or 3270@itemize @bullet
3270string) of integers. 3271@item
3272If it is a character, it means to display that character instead of
3273the text in the region.
3271 3274
3272If it is a character, it is an alternate character to display instead 3275@item
3276If it is a string, it means to display that string's contents instead
3273of the text in the region. 3277of the text in the region.
3274 3278
3275If it is a string, it is an alternate character sequences to 3279@item
3276display. 3280If it is a vector or list, the elements are characters interleaved
3277 3281with internal codes specifying how to compose the following character
3278If it is a vector or list, it is a sequence of alternate 3282with the previous one.
3279characters interleaved with internal codes specifying how to 3283@end itemize
3280compose the following character with the previous one.
3281@end table 3284@end table
3282 3285
3283@node Format Properties 3286@node Format Properties