aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2011-05-06 11:32:26 -0300
committerStefan Monnier2011-05-06 11:32:26 -0300
commitbc3bea9cf0a5a074fc16aa16d4145567d4c5d183 (patch)
tree415df1cf141d2587d3cc21a10dba6d901cefbec7
parente6dc6206e96b5d1774f9f431b49f7879415e6edb (diff)
downloademacs-bc3bea9cf0a5a074fc16aa16d4145567d4c5d183.tar.gz
emacs-bc3bea9cf0a5a074fc16aa16d4145567d4c5d183.zip
* 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.
-rw-r--r--doc/lispref/ChangeLog8
-rw-r--r--doc/lispref/elisp.texi2
-rw-r--r--doc/lispref/modes.texi8
-rw-r--r--doc/lispref/vol1.texi2
-rw-r--r--doc/lispref/vol2.texi2
5 files changed, 15 insertions, 7 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index c564c780b53..c8a45ffc4d3 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,11 @@
12011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * modes.texi (Region to Refontify): Rename from "Region to Fontify".
4 (Multiline Font Lock):
5 * vol2.texi (Top):
6 * vol1.texi (Top):
7 * elisp.texi (Top): Update menu accordingly.
8
12011-05-05 Drew Adams <drew.adams@oracle.com> 92011-05-05 Drew Adams <drew.adams@oracle.com>
2 10
3 * modes.texi (Region to Fontify): Fix typo. 11 * modes.texi (Region to Fontify): Fix typo.
diff --git a/doc/lispref/elisp.texi b/doc/lispref/elisp.texi
index 9b2b4817e27..93a8acdff0c 100644
--- a/doc/lispref/elisp.texi
+++ b/doc/lispref/elisp.texi
@@ -825,7 +825,7 @@ Font Lock Mode
825Multiline Font Lock Constructs 825Multiline Font Lock Constructs
826 826
827* Font Lock Multiline:: Marking multiline chunks with a text property. 827* Font Lock Multiline:: Marking multiline chunks with a text property.
828* Region to Fontify:: Controlling which region gets refontified 828* Region to Refontify:: Controlling which region gets refontified
829 after a buffer change. 829 after a buffer change.
830 830
831Documentation 831Documentation
diff --git a/doc/lispref/modes.texi b/doc/lispref/modes.texi
index 61c8b5be129..1c72619c833 100644
--- a/doc/lispref/modes.texi
+++ b/doc/lispref/modes.texi
@@ -3143,7 +3143,7 @@ subsequent lines.
3143 3143
3144@menu 3144@menu
3145* Font Lock Multiline:: Marking multiline chunks with a text property. 3145* Font Lock Multiline:: Marking multiline chunks with a text property.
3146* Region to Fontify:: Controlling which region gets refontified 3146* Region to Refontify:: Controlling which region gets refontified
3147 after a buffer change. 3147 after a buffer change.
3148@end menu 3148@end menu
3149 3149
@@ -3195,7 +3195,7 @@ place the @code{font-lock-multiline} property on the text before
3195Font-Lock looks at it, or use 3195Font-Lock looks at it, or use
3196@code{font-lock-fontify-region-function}. 3196@code{font-lock-fontify-region-function}.
3197 3197
3198@node Region to Fontify 3198@node Region to Refontify
3199@subsubsection Region to Fontify after a Buffer Change 3199@subsubsection Region to Fontify after a Buffer Change
3200 3200
3201 When a buffer is changed, the region that Font Lock refontifies is 3201 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
3204example, when a change alters the syntactic meaning of text on an 3204example, when a change alters the syntactic meaning of text on an
3205earlier line. 3205earlier line.
3206 3206
3207 You can enlarge (or even reduce) the region to fontify by setting 3207 You can enlarge (or even reduce) the region to refontify by setting
3208the following variable: 3208the following variable:
3209 3209
3210@defvar font-lock-extend-after-change-region-function 3210@defvar font-lock-extend-after-change-region-function
@@ -3212,7 +3212,7 @@ This buffer-local variable is either @code{nil} or a function for
3212Font-Lock to call to determine the region to scan and fontify. 3212Font-Lock to call to determine the region to scan and fontify.
3213 3213
3214The function is given three parameters, the standard @var{beg}, 3214The function is given three parameters, the standard @var{beg},
3215@var{end}, and @var{old-len} from after-change-functions 3215@var{end}, and @var{old-len} from @code{after-change-functions}
3216(@pxref{Change Hooks}). It should return either a cons of the 3216(@pxref{Change Hooks}). It should return either a cons of the
3217beginning and end buffer positions (in that order) of the region to 3217beginning and end buffer positions (in that order) of the region to
3218fontify, or @code{nil} (which means choose the region in the standard 3218fontify, or @code{nil} (which means choose the region in the standard
diff --git a/doc/lispref/vol1.texi b/doc/lispref/vol1.texi
index 8454e633c78..d6bc4538adb 100644
--- a/doc/lispref/vol1.texi
+++ b/doc/lispref/vol1.texi
@@ -846,7 +846,7 @@ Font Lock Mode
846Multiline Font Lock Constructs 846Multiline Font Lock Constructs
847 847
848* Font Lock Multiline:: Marking multiline chunks with a text property. 848* Font Lock Multiline:: Marking multiline chunks with a text property.
849* Region to Fontify:: Controlling which region gets refontified 849* Region to Refontify:: Controlling which region gets refontified
850 after a buffer change. 850 after a buffer change.
851 851
852Documentation 852Documentation
diff --git a/doc/lispref/vol2.texi b/doc/lispref/vol2.texi
index f481523b981..6f7507eb40c 100644
--- a/doc/lispref/vol2.texi
+++ b/doc/lispref/vol2.texi
@@ -845,7 +845,7 @@ Font Lock Mode
845Multiline Font Lock Constructs 845Multiline Font Lock Constructs
846 846
847* Font Lock Multiline:: Marking multiline chunks with a text property. 847* Font Lock Multiline:: Marking multiline chunks with a text property.
848* Region to Fontify:: Controlling which region gets refontified 848* Region to Refontify:: Controlling which region gets refontified
849 after a buffer change. 849 after a buffer change.
850 850
851Documentation 851Documentation