aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref/modes.texi
diff options
context:
space:
mode:
authorStefan Monnier <[email protected]>2011-05-06 11:32:26 -0300
committerStefan Monnier <[email protected]>2011-05-06 11:32:26 -0300
commitbc3bea9cf0a5a074fc16aa16d4145567d4c5d183 (patch)
tree415df1cf141d2587d3cc21a10dba6d901cefbec7 /doc/lispref/modes.texi
parente6dc6206e96b5d1774f9f431b49f7879415e6edb (diff)
* lispref/modes.texi (Region to Refontify): Rename from "Region to Fontify".
(Multiline Font Lock): * lispref/vol2.texi (Top): * lispref/vol1.texi (Top): * lispref/elisp.texi (Top): Update menu accordingly.
Diffstat (limited to 'doc/lispref/modes.texi')
-rw-r--r--doc/lispref/modes.texi8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/lispref/modes.texi b/doc/lispref/modes.texi
index 61c8b5be12..1c72619c83 100644
--- a/doc/lispref/modes.texi
+++ b/doc/lispref/modes.texi
@@ -3143,7 +3143,7 @@ subsequent lines.
@menu
* Font Lock Multiline:: Marking multiline chunks with a text property.
-* Region to Fontify:: Controlling which region gets refontified
+* Region to Refontify:: Controlling which region gets refontified
after a buffer change.
@end menu
@@ -3195,7 +3195,7 @@ place the @code{font-lock-multiline} property on the text before
Font-Lock looks at it, or use
@code{font-lock-fontify-region-function}.
-@node Region to Fontify
+@node Region to Refontify
@subsubsection Region to Fontify after a Buffer Change
When a buffer is changed, the region that Font Lock refontifies is
@@ -3204,7 +3204,7 @@ While this works well most of the time, sometimes it doesn't---for
example, when a change alters the syntactic meaning of text on an
earlier line.
- You can enlarge (or even reduce) the region to fontify by setting
+ You can enlarge (or even reduce) the region to refontify by setting
the following variable:
@defvar font-lock-extend-after-change-region-function
@@ -3212,7 +3212,7 @@ This buffer-local variable is either @code{nil} or a function for
Font-Lock to call to determine the region to scan and fontify.
The function is given three parameters, the standard @var{beg},
-@var{end}, and @var{old-len} from after-change-functions
+@var{end}, and @var{old-len} from @code{after-change-functions}
(@pxref{Change Hooks}). It should return either a cons of the
beginning and end buffer positions (in that order) of the region to
fontify, or @code{nil} (which means choose the region in the standard