aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlan Mackenzie2006-03-19 20:36:21 +0000
committerAlan Mackenzie2006-03-19 20:36:21 +0000
commite91d4202004eb76d6edddbcea3d27c11b546a788 (patch)
tree70e7ca0a35fe89a79924abba47cd86f1a1ceb0c8
parentbd2bd8fafa17a1b3828f3a301e07a12ea16d8b45 (diff)
downloademacs-e91d4202004eb76d6edddbcea3d27c11b546a788.tar.gz
emacs-e91d4202004eb76d6edddbcea3d27c11b546a788.zip
* text.texi (Special Properties): Clarify the definition of
'fontified.
-rw-r--r--lispref/ChangeLog5
-rw-r--r--lispref/text.texi22
2 files changed, 24 insertions, 3 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index ab3f92564a3..c488c809a46 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,8 @@
12006-03-19 Alan Mackenzie <acm@muc.de>
2
3 * text.texi (Special Properties): Clarify the definition of
4 'fontified.
5
12006-03-16 Richard Stallman <rms@gnu.org> 62006-03-16 Richard Stallman <rms@gnu.org>
2 7
3 * display.texi (Defining Images): Minor cleanup. 8 * display.texi (Defining Images): Minor cleanup.
diff --git a/lispref/text.texi b/lispref/text.texi
index c68a55bedc7..3a0d4f7a585 100644
--- a/lispref/text.texi
+++ b/lispref/text.texi
@@ -2994,9 +2994,25 @@ that all text between the character and where the mouse is have the same
2994 2994
2995@item fontified 2995@item fontified
2996@kindex fontified @r{(text property)} 2996@kindex fontified @r{(text property)}
2997This property, if non-@code{nil}, says that text in the buffer has 2997This property says whether the text has had faces assigned to it by
2998had faces assigned automatically by a feature such as Font-Lock mode. 2998font locking. The display engine tests it to decide whether a buffer
2999@xref{Auto Faces}. 2999portion needs refontifying before display. @xref{Auto Faces}. It
3000takes one of these three values---other values are invalid:
3001
3002@table @asis
3003@item @code{nil}
3004Font locking is disabled, or the @code{face} properties on the text,
3005if any, are invalid.
3006
3007@item The symbol @code{defer}
3008This value states that the text's @code{face} properties are invalid
3009and marks it for deferred fontification. It is used only when ``just
3010in time'' font locking is enabled.
3011
3012@item @code{t}
3013The @code{face} properties, or lack of them, on the text are currently
3014valid.
3015@end table
3000 3016
3001@item display 3017@item display
3002@kindex display @r{(text property)} 3018@kindex display @r{(text property)}