diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2007-06-01 02:05:39 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2007-06-01 02:05:39 +0000 |
commit | 5f73717041a8c548df856d4cdee4037ec6a50bb9 (patch) | |
tree | d2a949a804e027f3ec767c72a831dde282adca9f /lispref | |
parent | e71c2787ab9c4a71cb510ee8d4be1d30577475ef (diff) | |
download | emacs-5f73717041a8c548df856d4cdee4037ec6a50bb9.tar.gz |
(Special Properties): Correct meaning of fontified face. Text
suggested by Stefan Monnier.
Diffstat (limited to 'lispref')
-rw-r--r-- | lispref/text.texi | 23 |
1 files changed, 5 insertions, 18 deletions
diff --git a/lispref/text.texi b/lispref/text.texi index 9a6415f375c..4448e1cc402 100644 --- a/lispref/text.texi +++ b/lispref/text.texi @@ -3026,24 +3026,11 @@ that all text between the character and where the mouse is have the same @item fontified @kindex fontified @r{(text property)} -This property says whether the character has a face assigned to it by font -locking. The display engine tests it to decide whether a buffer -portion needs refontifying before display. @xref{Auto Faces}. It -takes one of three values: - -@table @asis -@item @code{nil} -Font locking is disabled, or the character's @code{face} property, if -any, is invalid. - -@item @code{defer} -This value is only used when ``just in time'' font locking is enabled -and it means that the character's @code{face} property is invalid and -needs deferred fontification. - -@item @code{t} -The character's @code{face} property, or absence of one, is valid. -@end table +This property says whether the text is ready for display. If +@code{nil}, Emacs's redisplay routine calls the functions in +@code{fontification-functions} (@pxref{Auto Faces}) to prepare this +part of the buffer before it is displayed. It is used internally by +the ``just in time'' font locking code. @item display This property activates various features that change the |