diff options
| -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 | |||
| 3026 | 3026 | ||
| 3027 | @item fontified | 3027 | @item fontified |
| 3028 | @kindex fontified @r{(text property)} | 3028 | @kindex fontified @r{(text property)} |
| 3029 | This property says whether the character has a face assigned to it by font | 3029 | This property says whether the text is ready for display. If |
| 3030 | locking. The display engine tests it to decide whether a buffer | 3030 | @code{nil}, Emacs's redisplay routine calls the functions in |
| 3031 | portion needs refontifying before display. @xref{Auto Faces}. It | 3031 | @code{fontification-functions} (@pxref{Auto Faces}) to prepare this |
| 3032 | takes one of three values: | 3032 | part of the buffer before it is displayed. It is used internally by |
| 3033 | 3033 | the ``just in time'' font locking code. | |
| 3034 | @table @asis | ||
| 3035 | @item @code{nil} | ||
| 3036 | Font locking is disabled, or the character's @code{face} property, if | ||
| 3037 | any, is invalid. | ||
| 3038 | |||
| 3039 | @item @code{defer} | ||
| 3040 | This value is only used when ``just in time'' font locking is enabled | ||
| 3041 | and it means that the character's @code{face} property is invalid and | ||
| 3042 | needs deferred fontification. | ||
| 3043 | |||
| 3044 | @item @code{t} | ||
| 3045 | The character's @code{face} property, or absence of one, is valid. | ||
| 3046 | @end table | ||
| 3047 | 3034 | ||
| 3048 | @item display | 3035 | @item display |
| 3049 | This property activates various features that change the | 3036 | This property activates various features that change the |